需要幫助jQuery改變我的表單動作取決於提交按鈕按下。 我發現了一些JavaScript代碼,但它不工作。2x提交按鈕以採取行動不同的URL
<form name="myform" onsubmit="return onsubmitform();">
下面是函數
<script type="text/javascript">
function submitform()
{
if(document.pressed == 'Save')
{
document.myform.action ="jbupdate.php";
} else
if(document.pressed == 'Print')
{
document.myform.action ="ppage.php";
}
return true;
}
</script>
,這些都是我的提交按鈕
<input type="submit" name="operation" onclick="document.pressed=this.value" value="Save" />
<input type="submit" name="operation" onclick="document.pressed=this.value" value="Print" />
我會想發佈此信息取決於按下的按鈕,這些操作頁面。