jQuery判断元素是否存在
答案:使用jQuery的.length
属性
您可以使用 jQuery .length
属性来确定元素是否存在,以防万一您只想在 DOM 中存在特定元素时触发某个事件。
这是一个示例,如果指定元素存在,则在单击按钮时显示警报。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Test If an Element Exists</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
if($("#myDiv").length){
alert("The element you're testing is present.");
}
});
});
</script>
</head>
<body>
<div id="myDiv"></div>
<p>The quick brown fox jumps over the lazy dog</p>
<button>Check Element</button>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答:
Advertisements