所以我得到了这个显示警报的代码,但现在我想把它链接到一个网址。因此,如果用户点击" OK"然后他/她将被带到一个网址....
以下是代码:
<script>
setInterval(function(){ alert("Man! you are too slow!!!")}, 3000); //so here I need to add a url link for "OK" button...
</script>
如果你帮我这个,我将不胜感激...... Aloha_mate。
答案 0 :(得分:1)
您不能使用alert
执行此操作,但可以使用confirm
setInterval(function() {
if (confirm("Man! you are too slow!!!")) {
window.location.href = "url";
}
}, 3000);
答案 1 :(得分:0)
以下是您的示例代码...
<div id="OK" style="display:block;border:solid 1px;">OK</div>
<script>
$('#OK').click(function (e) {
if (confirm("Man! you are too slow!!!"))
{
window.location.href = "url";
}
});
</script>