您好,登錄后才能下訂單哦!
:contains('john'):表示包含指定字符串的標簽,字符串大小寫敏感
:empty:表示查詢空標簽的元素
:has('p'):表示查詢有子元素的元素
.addClass("樣式名"):為查詢到的所有標簽添加樣式
:parent:表示查詢非空標簽
`
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../js/jquery-1.6.js"></script>
<style type="text/css">
.myClass{
font-size:44px;
color:blue
}
</style>
</head>
<body>
<div><p>John Resig</p></div>
<div><p>George Martin</p></div>
<div>Malcom John Sinclair</div>
<div>J. Ohn</div>
<p></p>
<p></p>
<div></div>
<script type="text/javascript">
//1)查找所有包含文本"John"的div元素的個數
//alert($("div:contains('john')").size());
//2)查找所有p元素為空的元素個數
//alert($("p:empty").size());
//3)給所有包含p元素的div元素添加一個myClass樣式
//$("div:has('p')").addClass("myClass");
//4)查找所有含有子元素或者文本的p元素個數,即p為父元素
alert($("p:parent").size());
</script>
</body>
</html>
`
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。