gpt4 book ai didi

Javascript 函数仅适用于 Internet Explorer

转载 作者:行者123 更新时间:2023-12-02 20:11:16 25 4
gpt4 key购买 nike

我再介绍一下IE的另一个技巧!

今天,令我惊讶的是,我遇到了相反的情况。我的一些东西在 Internet Explorer 上运行良好,但在 FireFox 和 Chrome 上运行不佳!说真的,有人知道为什么这在 IE 中有效,而在其他浏览器中无效吗?这段代码看起来没什么用,但那是因为我已经隔离了问题。我们开始吧:

<html>
<head>
<script>
function redirectFuncionTest(value){
document.getElementById(value).click();
return false;
}
</script>
</head>
<body>
<input type="button" value="start redirectFuncionTest"
onclick="redirectFuncionTest('idLink')" />
<a id="idLink" name="namelink" href="http://www.google.com"></a>
</body>
</html>

有什么帮助吗?还有其他方法可以做类似的事情吗?

感谢您的阅读!

最佳答案

click()方法仅存在于IE中。

相反,您可以编写location = document.getElementById(value).href

关于Javascript 函数仅适用于 Internet Explorer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6932295/

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