我有一个有 2 个按钮的表单:“提交”和“保存”。在提交表单后,两种单独的函数运行,取决于按下的按钮。我想要做的是在按下提交按钮时调用一个函数来检查空字段。
我的部分代码:
function valuecheck(){
var msg="";
if($F('entrepreneur_name')==""){
msg+="You need to fill the product name field!\n";
document.getElementById("entrepreneur_name").focus();
}
if($F('address')==""){
msg+="You need to fill in address!\n";
}
if (msg)
{alert(msg);
return false;
}
}
<?php
$chkbutton=$_POST['submit'];
switch ($chkbutton)
{
case "Submit":
// how to call the JavaScript function here..
...//rest of the code
?>
表格:
<input type="submit" style="width:10%" name="submit" value="Save" >
<input type="submit" style="width:10%" name="submit" value="Submit" >
如何在“提交”案例中调用javascript函数:
提前致谢。