最新的Web開發教程
 

jQuery before() Method

<jQuery的HTML / CSS方法

每次插入內容前<p>元素:

$("button").click(function(){
    $("p").before("<p>Hello world!</p>");
});
試一試»

定義和用法

before()方法插入指定的(前)所選元素的前面的內容。

提示:要插入內容選擇後的元素,使用after()方法。


句法

$(selector).before(content,function(index))

參數 描述
content 指定內容插入(可包含HTML標籤)

可能的值:

  • HTML元素
  • jQuery的對象
  • DOM元素
function(index) 可選的。 指定返回內容插入函數
  • index- Returns the index position of the element in the set

試一試 - 示例

before() -創建HTML,jQuery和DOM內容
插入與內容before()的方法。

使用函數插入內容
如何使用函數來插入內容選擇前的元素。


<jQuery的HTML / CSS方法