HTML中:
在<body>中添加
<script type="text/javascript">
window.onload=function()
{
var zx=document.getElementById("zx");
zx.onclick=function()
{
if(confirm("确定要注销吗?"))
{
return true;
}else{
return false;
}
}
}
</script>
其中我的zx(注销)是变量名,是在下面的<form>点击的提交按钮的ID,可以自己更改,如以下代码
<form action="zhuxiao.php" method="post">
<input type="submit" value="注销" id="zx"/>
</form>
使用JS:
也是在<body>中添加
<script type="text/javascript" language="javascript">
function confirmAct()
{
if(confirm('确定要退选吗?'))
{
return true;
}
return false;
}
</script>
然后在你要加的<a>标签里写入onclick事件
echo"<a href='自己想跳转的页面url' onclick='return confirmAct();'>退选</a>";
可以看出两者的区别,前者是设置表单要提交的按钮,给它一个ID,用ID来触发弹框函数
后者则是设置点击的标签,点击后直接return了弹框函数。两者运用合理可以完成几乎所有设计的弹框需求。
如果帮到了您请给个赞或评论吧!