如何在jQuery中的特定HTML标签中添加属性?
使用该attr()
方法将属性添加到jQuery中的特定HTML标记中。
示例
您可以尝试运行以下代码,以了解如何将属性添加到特定的HTML标签:
<!DOCTYPE html><html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(document).ready(function(){
$("button.button1").attr("myid", "myvalue");
$('button').on('click', function() {
if (this.hasAttribute("myid")) {
alert('True: The new attribute added successfully.')
} else {
alert('False')
}
})
});
});
</script>
</head>
<body>
<button class='button1'>
Button 1
</button>
</body>
</html>
以上是 如何在jQuery中的特定HTML标签中添加属性? 的全部内容, 来源链接: utcz.com/z/348960.html