gpt4 book ai didi

jquery - 代码未在超链接的 .click 上运行

转载 作者:行者123 更新时间:2023-12-01 02:26:03 26 4
gpt4 key购买 nike

当我遇到以下情况时,代码未在 .click 上运行:

$(".cancel").click(function() {
alert("got here");
$(this).closest(":dialog").dialog("close");
});

<a class="cancel" href=""><img src="images/cancelButton.gif" border="0" /></a>

这一定是一些愚蠢的事情,但我看不到。

最佳答案

我假设您将代码包装在 $(document).ready( function () { ... });

$(document).ready( function () {
$('.cancel').click( function(e) {
alert('here!');
e.preventDefault(); // prevents click from following through
});
});

关于jquery - 代码未在超链接的 .click 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2646043/

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