是否可以创建一个JS提示框,其中yes或ok将您重定向到一个站点而没有任何作用,如果是,那么它是否会出现在页面加载中?
谢谢!
编辑:回答如下。似乎比我想象的更容易!谢谢'船长'!
答案 0 :(得分:0)
您可以使用confirm
来执行此操作。但不是是/否,它显示确定/取消。
答案 1 :(得分:0)
<html>
<head>
<script type="text/javascript">
function check(){
var r=confirm("Press a button");
if (r==true)
{
alert("you pressed ok do your navigation here")
}
else
{
alert("you pressed cancel do nothing here")
}
}
</script>
</head>
<body onload="check()">
</body>
</html>
继承你的整个测试代码。
答案 2 :(得分:0)
在confirmation box
onload event
<body onload="myFunction()">
<!-- put html code here -->
</body>
function myFunction() {
var redirect = confirm("Redirect to http://www.xyz.com ?");
if (redirect == true) {
window.location.href = 'http://www.xyz.com'; //redirect to http://www.xyz.com.
}
}