gpt4 book ai didi

jQuery 根本无法在 IE6 中运行

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

我在这里完全不知所措。我的一个客户在内部使用 IE6,由于某种原因,即使是最简单的 jQuery 也无法工作。这是不起作用的代码。

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<script type="text/javascript" src="js/jquery-1.4.2.js" />
<script type="text/javascript">

jQuery(function() {
alert("alert from jQuery");
});

$(document).ready(function() {
alert("alert from doc.ready");
});


</script>

</head>
<body>

</body>
</html>

我知道IE6有很多问题。我尝试了很多在互联网上找到的解决方法(例如将脚本放在页面底部,删除类型属性),但没有任何效果。任何帮助将不胜感激。

最佳答案

这实际上在很多浏览器中不起作用,因为您没有正确包含脚本。您必须执行以下操作:

<script type="text/javascript" src="js/jquery-1.4.2.js"></script>

script 标记必须按上述方式完成,否则脚本将被包含。

关于jQuery 根本无法在 IE6 中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3604261/

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