溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

奪命雷公狗jquery---4內(nèi)容選擇器

發(fā)布時(shí)間:2020-06-29 14:56:20 來源:網(wǎng)絡(luò) 閱讀:271 作者:奪命雷公狗 欄目:web開發(fā)
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>test</title>
		<script src="js/jquery.js" ></script>
		<script>
			window.onload = function(){
				document.getElementById('btnok').onclick = function(){
					//1.匹配內(nèi)容包含 “蝦” 的li借點(diǎn)
					//$('li:contains(蝦)').css('backgroundColor','red');
					//2.匹配空元素
					//$('li:empty()').html('莊家通殺');
					//3.匹配包含span元素的li節(jié)點(diǎn)
					//$('li:has(span)').css('backgroundColor','red');
					//4.匹配不為空的元素
					$('li:parent()').html('想啥呢?繼續(xù)敲代碼');
				}
			}
		</script>
	</head>
	<body>
		<input type="button" id="btnok" value="匹配" />
		<hr/>
		<ul>
			<li>魚</li>
			<li></li>
			<li>蝦</li>
			<li>蟹</li>
			<li><span>莊家通殺</span></li>
		</ul>
	</body>
</html>


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI