gpt4 book ai didi

javascript - 如何使用 jquery 在 Internet Explorer 10 中运行单击事件处理程序?

转载 作者:搜寻专家 更新时间:2023-10-31 22:20:53 24 4
gpt4 key购买 nike

我正在尝试通过单击 anchor 标记来使用 jquery 1.7 运行单击事件处理程序。 This代码在 Firefox 中运行良好,但我无法在 IE 10 中使用相同的代码显示警告框。谁能告诉我如何在 Internet Explorer 10 中实现此功能?

$(document).ready(function() {
$('.call-link').on('click', function (ev, evData) {
alert("hello world");
});
});

最佳答案

它没有在 IE 中调用,因为该元素已被禁用。

参见:Demo

$(document).ready(function() {
$('.call-link').click(function (ev, evData) {
alert("hello world");
});
});

关于javascript - 如何使用 jquery 在 Internet Explorer 10 中运行单击事件处理程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21601648/

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