为什么程序化点击在 IE 或 Chrome 上不起作用?
我正在使用此小书签以编程方式点击 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该按钮可能会提交一个表单,为什么不使用 Javascript 提交表单呢?你总是被允许这样做。
That button is likely going to submit a form, why not submit the form with Javascript? You are always allowed to do that.