对 href 调用警报,然后继续进入新页面
我有一个页面链接,该页面调用“性感警报框”脚本来弹出一条消息,询问用户是否同意带有“我同意”和“取消”选项的条款和条件。
我已经做了这么多,但现在我需要“我同意”选项将它们发送到新页面。 (“取消”将用户返回到当前页面。)
与 document.location.href
有关吗?
我正在使用 mootools 框架。
代码如下:
<a href="#"
onclick="Sexy.confirm('Do you agree to the terms and conditions?', {
textBoxBtnOk: 'I Agree', // goes to www.newpage.com
textBoxBtnCancel: 'Cancel' // return to current page
});">Link</a>
I have a link to a page which invokes the 'Sexy Alert Box' script to pop a message asking if users agree to Terms and Conditions with options "I Agree" and "Cancel".
I've got that much going but now I need for the "I Agree" option to send them to a new page. ("Cancel" returns the user the current page.)
Something to do with document.location.href
?
I am using the mootools framework.
Sexy Alert Box 1.2 mootools & jQuery
Here's the code:
<a href="#"
onclick="Sexy.confirm('Do you agree to the terms and conditions?', {
textBoxBtnOk: 'I Agree', // goes to www.newpage.com
textBoxBtnCancel: 'Cancel' // return to current page
});">Link</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
标准的内置 javascript
confirm
函数将返回 true 或 false,具体取决于按下的按钮(这是一个同步操作),但是这个Sexy.confirm
插件看起来像是将通过回调函数返回其选择的东西(它将是一个异步操作)。例如,
然后你可以让你的链接标签更好一点,
祝你好运!
The standard, built-in javascript
confirm
function will return true or false, depending on the button pushed (this is a synchronous action), but thisSexy.confirm
plugin looks like something that is going to return its choice via callback functions (it will be an asynchronous action).For example,
And then you can make your link tags a little nicer,
Good luck!
使用 Mootools:
用于 HTML
和 JavaScript
With Mootools:
Use for HTML
And JavaScript