任何人都可以帮助我在我的功能警报框中添加是或否

时间:2015-02-20 01:43:52

标签: php

这是我的功能:

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 ();}

1 个答案:

答案 0 :(得分:1)

你会说“确认”警告框吗?这就像一个警告框,但有2个按钮是/否以及获得结果的方法:

if (confirm("do you want it ?")) 
{
    // if they clicked yes
}
else
{
    // if they clicked no
}