js弹出提示框并跳转页面
1。提示框有两个选择项,点确定跳转,取消停留在原页面
ScriptManager.RegisterStartupScript(Page, this.GetType(), "", "<script>if(confirm(‘请登录
?‘)){location.href=‘login.aspx‘};</script>", false);
2.提示框只有一个确定按钮,跳转到指定页面
ScriptManager.RegisterStartupScript(page, this.GetType(), "", "<script>alert(‘请登录?‘);location.href=‘login.aspx‘</script>", false);
或者是:
<script language="JavaScript">
alert(‘提示信息‘);-------------------------提示框内容
location.href=‘https://125.69.90.54/‘;-----------------------点击按钮后跳转页面url
document.onmousedown=click
</script>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。