gpt4 book ai didi

javascript - jQuery .on 不能很好地检测点击?

转载 作者:行者123 更新时间:2023-11-30 08:46:38 26 4
gpt4 key购买 nike

我想我做的不对。为什么 .on 函数在这里不起作用?

<html>
<head>
</head>
<body>
<button type="button" class="close" data-test="test">TEST BUTTON</button>
<a href="javascript:void(0);" class="close" data-test="test">TEST LINK</button>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript">
$("document").on('test', '[data-test="test"]', function() { alert("got test!!!"); });
</script>
</body>
</html>

最佳答案

document 是对象而不是字符串,将 $("document") 更改为 $(document)。 fiddle :http://jsfiddle.net/DUn5f/

关于javascript - jQuery .on 不能很好地检测点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21471139/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com