我们如何在句点中使用jQuery属性选择器?

jQuery Attribute选择器用于选择具有指定属性和值的元素。您可以通过句点(。)或哈希(#)轻松使用它。

示例

您可以尝试运行以下代码,以了解如何在句点中使用jQuery选择器:

<!DOCTYPE html>

<html>

<head>

<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

   $( "div[myattr*='.']" ).css("background-color", "yellow");  

});

</script>

</head>

<body>

<div id="sub1" myattr="java.subject">Java</div>

<div id="sub2" myattr=".htmlsubject">HTML</div>

<div id="sub3" myattr="rubysubject">Ruby</div>

</body>

</html>

以上是 我们如何在句点中使用jQuery属性选择器? 的全部内容, 来源链接: utcz.com/z/345388.html

回到顶部