parent()方法返回所選元素的直接父級元素。
parent()方法僅在DOM樹上移動單個級別。要遍歷文檔的根元素,請使用parent()方法。
$(selector).parent(filter)
返回每個段落的直接父級:
$("p").click(function(){ $(this).parent(); });測試看看?/?
返回帶有“ selected”類的每個段落的直接父元素:
$(document).ready(function(){ $("p").parent(".selected").css("background", "coral"); });測試看看?/?
parent()方法僅在DOM樹上移動單個級別。下面的示例返回SPAN的直接父級:
p(直接父級) span
參數(shù) | 描述 |
---|---|
filter | (可選)指定選擇器表達式以匹配元素 |