總結(同一個表單根據要求遞交到不同頁面的幾種方法附代碼)
發表于:2007-06-30來源:作者:點擊數:
標簽:
看到好多朋友問怎么樣在根據同一個表單遞交到不同頁面,現總結如下: 方法一:(推薦) form method=POST name=form1 ...... input type=button value=del name=B1 onclick=document.form1.action=@#del.asp@#; document.form1.submit() input type=button valu
看到好多朋友問怎么樣在根據同一個表單遞交到不同頁面,現總結如下:
方法一:(推薦)
<form method="POST" name="form1">
......
<input type="button" value="del" name="B1" onclick="document.form1.action=@#del.asp@#; document.form1.submit()" >
<input type="button" value="view" name="B2" onclick="document.form1.action=@#view.asp@#;document.form1.submit()">
<input type="button" value="addnew" name="B3" onclick="document.form1.action=@#addnew.asp@#; document.form1.submit()">
</form>
------------------------------------------------------------
方法二
<script language="
vbscript">
sub click1()
if window.event.srcElement.name="del" then
form1.action="del.asp"
form1.submit
end if
if window.event.srcElement.name="view" then
form1.action="show.asp"
form1.submit
end if
if window.event.srcElement.name="add" then
form1.action="add.asp"
form1.submit
end if
end sub
</script>
----------
<FORM method=POST name="form1">
.................
<input type="submit" value="del" name ="del" onclick="click1()">
<input type="submit" value="view" name="view" onclick="click1()">
<input type="submit" value="add" name="add"
onclick="click1()">
</form>
原文轉自:http://www.kjueaiud.com