如果您访问http://bdsfineandrare.co.uk,您会在拒绝按钮上看到免责声明。是否有人能够协助我制作它以便将用户重定向到Google?
我已经尝试了几个程序,但它似乎没有用。它使按钮样式消失,只有文本可见。
答案 0 :(得分:1)
将其放在<h4>
标记内:
onclick="if(confirm('Disagree to our Terms and Conditions?')){window.location.href='http://www.google.com'};"
答案 1 :(得分:-1)
一般情况下你可以这样做:
<html>
<script>
function redirect (){
window.location.assign("http://www.google.com");
}
</script>
<body>
<button onclick="redirect()"> click me </button>
</body>
</html>