当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery prependTo()用法及代码示例


prependTo() 方法是 jQuery 中的内置方法,用于在所选元素的开头插入 HTML 元素或某些内容。

用法:

$(content).prepend(selector)

参数:该函数接受如上所述和如下所述的两个参数:

  • content:为必填参数,用于指定要插入的内容。
  • selector:它是必需参数,用于指定要在内容前面添加的元素。

返回值:此方法返回选定元素以及 prependTo 方法所做的特定更改。
下面的示例说明了 jQuery 中的 prependTo() 方法:
例子:

html


<!DOCTYPE html>
<html>
<head>
    <title>The prependTo Method</title>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <!-- jQuery code to show the working of this method -->
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("<span>Welcome to </span>").prependTo("p");
            });
        });
    </script>
    <style>
        div {
            width: 350px;
            min-height: 180px;
            font-weight: bold;
            padding: 20px;
            font-size: 25px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <div>
        <p>GeeksforGeeks!</p>
        <!-- Click on this button to see the change -->
        <button>Click Here!</button>
    </div>
</body>
</html>

输出:

jquery-15
相关文章:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery prependTo() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。