如何使用javascript模拟点击href为php的链接
我正在编写一个 Google Chrome 扩展。我需要使用 javascript 模拟点击此链接:
请不要使用 JQuery,我还没学会呢。
I am writing a Google Chrome Extension. I need to use javascript to simulate a click on this link: <a href="/logout.php /a>
so I can log out. How can I get this done?
No JQuery please, I haven't learned it yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Main 函数将创建任何事件:
现在调用该函数:
Main function will create any event:
Now call the function:
由于这是一个扩展,因此您可以向服务器
/logout.php
提交 XHR 请求,而不是模拟点击。但模拟鼠标点击相当简单,我在许多扩展中使用以下代码:
Since this is for an extension, you could submit an XHR request to the server
/logout.php
rather than simulate a click.But simulating a mouse click is rather simple, I use the following code in many of my extensions: