我正在尝试向我的表单添加一个按钮,该按钮本质上将运行一些与我的常规表单提交代码不同的 php 代码,而不是将我的表单通过电子邮件发送给我,而是将我的页面转换为准备打印的漂亮 pdf。除了按下按钮给我一个错误外,我一切正常。
萤火虫 说:
这是代码:
<form id="adaugareanunt" name="adaugareanunt" action="mailerPDF.php" method="post">
<table width="535" border="0" cellspacing="2" cellpadding="3">
<tr class="TrDark">
//... more form code
对于按钮:
<div style="text-align:right"><img src="images/print-button.png" onClick="chgAction()" width="60px" height="20px"></div>
使用脚本:
<script language="JavaScript" type="text/JavaScript">
function chgAction()
{
document.getElementById["adaugareanunt"].action = "mailerXFDF.php";
document.getElementById["adaugareanunt"].submit();
document.getElementById["adaugareanunt"].action = "mailerPDF.php";
}
</script>