我有一个上面有 2 个按钮的表单。1 将使用 .php 脚本发送电子邮件,另一个将表单提交到 .php 数据库。这两个都很好用,但我想把它们组合成一个按钮。这是我的代码示例:
<FORM name="drop_list" action="<?php echo $editFormAction; ?>"" method="POST" >
<input name="emailForm" type="button" id="emailForm" onClick="sendFormEmail()" value="Email">
<input name="add_patient" type="submit" id="add_patient" onclick=document.drop_list.action='<?php echo $editFormAction; ?>' value="Add Patient">
这是为电子邮件按钮运行的 java 脚本:
function sendFormEmail() //email form
{
document.drop_list.action = "html_form_send.php";
document.drop_list.target = "_blank";
document.drop_list.submit(); // Submit the page
return true;
}
我对 php 脚本和 javascript 还是很陌生,因此感谢您的帮助。