如果按下警报,则转到“确定”按钮后的 URL
我需要确保当用户在 JavaScript 警报窗口中单击“确定”时,浏览器会移动到不同的 URL。这可能吗?
I need to make sure that when the user clicks OK in a JavaScript alert window, the browser moves to a different URL. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
我想你需要的是这样的:
I think what you need is this :
是的,只需在
alert()
调用之后立即重定向即可:Yes, simply redirect right after the
alert()
call:如果是为了可访问性,并且您想监听页面上的每个链接,而不是检查您是否将当前站点离开到另一个域,请查看我写的内容,扩展乔的答案
If it is for accessibility and you want to listen to every link on the page and than check if you are leaving the current site to another domain, check out what I wrote, expanding on Joe's answer
就我而言,还需要重新加载。
In my case, reload was also needed.
“确保”是什么意思?
在警报窗口中单击“确定”后重定向用户。
What do you mean by "make sure"?
redirects user after they click OK in the alert window.
我怀疑你的意思是在
confirm
窗口中(即是/否选项)。I suspect you mean in a
confirm
window (ie. Yes/No options).警报不返回值,实际上返回
undefined
所以我现在找到的最简单的方法是像这样调节警报更好的方法是使用像这样的confirm() javascript函数
另一个选择是让你的当然是自己的警报
An alert does not return a value, in fact returns
undefined
so the easiest way I find right now is conditioning the alert like thisA better way is using confirm() javascript function like this
Another option is making your own alert of course