单击超链接后确认框
所以我有一个超链接,如果按下它会执行一个主要操作(从数据库中删除某些内容),所以我想要一个确认框,一旦按下它,这样他们就不会犯错误。
我的超链接代码是:
<a href='*****.php?Number3=1222&AssignedTo=$12331'>[x]</a>
我不确定 Javascript,我知道这其中有一个主要部分...请帮忙? PS 超链接的URL是随机的,而且有很多,所以请不要弄成只适用于一个链接
So I have got a hyperlink, which if pressed does a major action ( delete something from the database ) so I want a confirm box once it is pressed so that they dont make mistakes.
My code for the hyperlink is:
<a href='*****.php?Number3=1222&AssignedTo=$12331'>[x]</a>
I am unsure on Javascript, and I know this has a major part in it... Please help?
PS The hyperlink's URL is random, and there are many of them so please dont make it so that it only works with one link
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试
try
为您的 href 指定一个类名,并使用 jQuery/straight JS 之类的内容作为目标,然后执行以下操作:
Give your href a class name and target it with something like jQuery/straight JS, then do this:
将一个类添加到 a 标签,这意味着您需要一个确认框。
然后将事件处理程序附加到这些:
或使用 jQuery:
Add a class to the a tags that means you want a confirm box.
Then attach an event handler to those:
Or using jQuery:
这是针对较新 jQuery 的答案,为那些需要自定义确认消息的人提供了一些额外的功能。
您使用 data-confirm 而不是 .confirm。您的 HTML 显示如下:
Here's an answer for newer jQuery with some extra functionality for those that want custom confirm messages.
You use data-confirm instead of .confirm. Your HTML appears as follows: