gpt4 book ai didi

javascript - 为什么我无法从 IE 7-8 中的 css 类绑定(bind)到单击事件?

转载 作者:行者123 更新时间:2023-11-28 12:06:49 25 4
gpt4 key购买 nike

为什么此 JavaScript 在 Internet Explorer 7-8 中不起作用?我想做的就是使用 jQuery 按类名选择 DIV,连接多个 DIV 的“单击”事件。

它适用于 Firefox、Chrome、Safari。在 IE 中,它只能在浏览器模式:IE 9/文档模式:IE 9 标准下工作”。无法在 IE 7 或 8 中工作。

<!DOCTYPE html>
<head>
<title>IE Click Target Test</title>
</head>
<body>

<div class="ClickTarget">Button 1</div>
<div class="ClickTarget">Button 2</div>

<!-- load jQuery 1.6.4 from CDN -->
<script type="application/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

<script type="application/javascript">
// This works fine in all browsers except IE pre-9.
$(document).ready(function () {

$(".ClickTarget").click(function () {
alert("If you can see me, it worked!");
});

});
</script>
</body>
</html>
  • 正常免责声明:在这个示例中我不必使用 jQuery,但它说明了我在使用 jQuery 1.6.4 的更大解决方案时遇到的问题。 IE 经常很奇怪,我已经和它打交道很多年了,但这就是生活。

出于某种原因,也许是即将到来的假期,我忽略了一些事情。知道为什么我无法在 IE 中注册点击吗?

最佳答案

我认为是 type="application/javascript"在你的<script>标签 -

"text/javascript" is the only type that is supported by all three browsers. However, you don't actually need to put a type. The type attribute of a script tag will default to "text/javascript" if it is not otherwise specified. How that will affect validation, I'm not sure. But does that really matter anyway?

来自 - Why doesn't IE8 recognize type="application/javascript" in a script tag?

关于javascript - 为什么我无法从 IE 7-8 中的 css 类绑定(bind)到单击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8248149/

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