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


JQuery prependTo()用法及代码示例


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

用法:

$(content).prepend(selector)

参数:该函数接受上述和以下描述的两个参数:


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

返回值:此方法返回选择的元素,并带有由prependTo方法进行的特定更改。

下面的示例说明了jQuery中的prependTo()方法:

例:

<!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 woirking 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>

输出:
pre..

相关文章:



相关用法


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