这是我的功能:
function alert($msg)
{
echo "<script>alert('$msg');history.back();</script>";
}
这就是我调用函数的方式:
if (statement is true)
{
Update the query!
}
}else{ alert("Please enter numeric in age");echo formupdateadd2 ();}
答案 0 :(得分:1)
你会说“确认”警告框吗?这就像一个警告框,但有2个按钮是/否以及获得结果的方法:
if (confirm("do you want it ?"))
{
// if they clicked yes
}
else
{
// if they clicked no
}