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


JQuery prepend()用法及代码示例


prepend()方法是jQuery中的内置方法,用于在选定元素的开头插入指定的内容。

用法:

$(selector).prepend(content, function)

参数:该方法接受上述和以下所述的两个参数:


  • content:这是必需的参数,用于指定需要插入的内容。
  • function:它是可选参数,用于指定调用后要执行的函数。

返回值:此方法返回通过prepend()方法进行指定更改的所选元素。

以下示例说明了jQuery中的prepend()方法:

示例1:本示例不包含可选参数。

<!DOCTYPE html> 
<html> 
   <head> 
       <title>The prepend Method</title> 
       <script src=" 
       https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
       </script> 
         
       <!-- jQuery code to show the woirking of this method -->
       <script> 
         $(document).ready(function(){ 
             $("button").click(function(){ 
                 $("p").prepend("Welcome to  "); 
             }); 
         }); 
       </script> 
       <style> 
         div { 
             width: 350px; 
             height: 100px; 
             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>

输出:
在单击按钮之前:

单击按钮后:

示例2:本示例包含可选参数。

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

输出:
在单击按钮之前:

单击按钮后:



相关用法


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