为什么程序化点击在 IE 或 Chrome 上不起作用?

发布于 2024-11-14 19:14:14 字数 455 浏览 2 评论 0原文

我正在使用此小书签以编程方式点击 Google 关键字工具中的搜索按钮:

javascript:document.getElementById("gwt-debug-searchPanel-searchButton").click();

我也尝试过这在 IE 中没有运气:

javascript:document.getElementById("gwt-debug-searchPanel-searchButton").fireEvent("onclick");

它实际上工作过一次,但后来就不再工作了。它在 Firefox 上运行良好,但在 Chrome 或 IE 上运行不佳。知道为什么吗?

I'm using this bookmarklet to programmatically click on the search button in Google's Keyword Tool:

javascript:document.getElementById("gwt-debug-searchPanel-searchButton").click();

I also tried this in IE with no luck:

javascript:document.getElementById("gwt-debug-searchPanel-searchButton").fireEvent("onclick");

It actually worked once but then it didn't work anymore. It works fine on Firefox, but not on Chrome or IE. Any idea why?

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

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

发布评论

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

评论(1

悍妇囚夫 2024-11-21 19:14:14

该按钮可能会提交一个表单,为什么不使用 Javascript 提交表单呢?你总是被允许这样做。

That button is likely going to submit a form, why not submit the form with Javascript? You are always allowed to do that.

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