gpt4 book ai didi

jQuery .click 函数不适用于中键

转载 作者:行者123 更新时间:2023-12-03 22:31:17 25 4
gpt4 key购买 nike

我有以下代码:

$(document).ready(function() {
$("#TestLink").click(function() {
$("#LinkHolder").html("test");
});
});

<span id="LinkHolder">
<a href="SomeLink" id="TestLink" target="_blank">Click here to test</a>
</span>

当我用鼠标左键单击链接时,一切都像 super 按钮一样工作,但是当我用 CTRL+LeftMouseButton 或 MiddleMouseButton 单击它时,它不起作用。

如果有人能帮助我解决这个问题,我会很高兴。

提前致谢!

最佳答案

考虑:

$(document).ready(function() {
$("#TestLink").mouseup(function(e) {
$("#LinkHolder").html("test");
});
});

作为替代方案?这确实检测到鼠标中键点击。

关于jQuery .click 函数不适用于中键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1474575/

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