最新的Web開發教程
 

jQuery is() Method

<jQuery的遍歷方法

如果父<p><div>元素,提醒一些文字:

if ($("p").parent().is("div")) {
    alert("Parent of p is div");
}
試一試»

定義和用法

is()方法檢查所選擇的要素之一selectorElement匹配。


句法

$(selector).is( selectorElement, function (index , element) )

參數 描述
selectorElement 需要。 指定一個選擇器表達式,元素或jQuery對象以匹配當前盤對陣元素。 如果從給定的參數至少有一個匹配,否則為false返回true。
function( index , element )

可選的。 指定要的組中的元素的運行功能。

  • index -該元素的索引位置
  • element -當前元素( "this"選擇器也可使用)

<jQuery的遍歷方法