我有一个页面链接,该页面调用“性感警报框”脚本来弹出一条消息,询问用户是否同意条款和条件,并带有“我同意”和“取消”选项。
我已经做了这么多,但现在我需要“我同意”选项将它们发送到新页面。(“取消”返回用户当前页面。)
有什么关系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>