通过 javascript 模拟点击锚标记

发布于 2024-09-16 12:58:44 字数 774 浏览 5 评论 0原文

我试图通过 javascript 模拟点击锚标记来更改浏览器地址框中的文本。这段代码在 IE 中工作得很好,但在 FireFox 或 Chrome 中却不行。

<script type="text/javascript">
    function UpdateQueryString() {
        var controlRef = document.createElement('a');
        controlRef.id = "t1";
        controlRef.href = '#1';
        controlRef.innerHTML = '';
        document.body.appendChild(controlRef);

        try {

        controlRef.click();
            }
        catch (err) {
            txt = "There was an error on this page.\n\n";
            txt += "Error description: " + err.description + "\n\n";
            txt += "Click OK to continue.\n\n";
            alert(txt);
        }
        return false;
    }
</script>

在 IE 以外的浏览器中,我可以找到锚标记,但调用 click 会导致错误。

谢谢

I am trying to change the text in browser's address box by simulating a click on an anchor tag via javascript. This code works just fine in IE, but not in FireFox or Chrome.

<script type="text/javascript">
    function UpdateQueryString() {
        var controlRef = document.createElement('a');
        controlRef.id = "t1";
        controlRef.href = '#1';
        controlRef.innerHTML = '';
        document.body.appendChild(controlRef);

        try {

        controlRef.click();
            }
        catch (err) {
            txt = "There was an error on this page.\n\n";
            txt += "Error description: " + err.description + "\n\n";
            txt += "Click OK to continue.\n\n";
            alert(txt);
        }
        return false;
    }
</script>

In browsers other than IE, I can find the anchor tag, but calling the click results in an error.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缪败 2024-09-23 12:58:44

您正在查找 location 属性

location = '#1';

或者

location.hash = '#1';

You're looking for the location property:

location = '#1';

or

location.hash = '#1';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文