明輝手游網(wǎng)中心:是一個免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

如何用image來提交form

[摘要]這次給大家?guī)碓鯓佑胕mage來提交form,用image來提交form的注意事項有哪些,下面就是實(shí)戰(zhàn)案例,一起來看一下。代碼如下:<form method="post" action="formtest.html" target="_bla...
這次給大家?guī)碓鯓佑胕mage來提交form,用image來提交form的注意事項有哪些,下面就是實(shí)戰(zhàn)案例,一起來看一下。

代碼如下:

<form method="post" action="formtest.html" target="_blank" name="formtest"> 
<input type="hidden" name="userid" value="userid"> 
<input type="hidden" name="username" value="username"> 
<input type="image" src="imagesubmit.gif" border="0"> 
</form>

不想使用button提交form,想用好看點(diǎn)的image來提交
那樣寫就會提交兩次了,input本身提交一次,js腳本再提交一次
使用圖片做為提交按紐有如下幾種方法:
1.

<form method="post" action="formtest.jsp"> 
<input type="hidden" name="userid" value="userid"> 
<input type="hidden" name="username" value="username"> 
<input type="image" src="imagesubmit.gif" border="0"> 
</form>

就如樓主自已所寫的,這樣是完全可以的
2.

<script> 
function formsubmit(){ 
document.formtest.action="formtest.jsp"; 
document.formtest.submit(); 
} 
</script> 
<form method="post" name="formtest"> 
<input type="hidden" name="userid" value="userid"> 
<input type="hidden" name="username" value="username"> 
<img src="imagesubmit.gif" border="0" onclick="formsubmit()"> 
</form>

在混合編程經(jīng)常使用這種方法,如你要提交的參數(shù)是隨動態(tài)取出的內(nèi)容變化而改變

相信看了這些案例你已經(jīng)掌握了方法,更多精彩請關(guān)注php中文網(wǎng)其它相關(guān)文章!

相關(guān)閱讀:

怎樣實(shí)現(xiàn)HTML的仿命令行界面

html+css+javascript如何實(shí)現(xiàn)列表循環(huán)滾動

怎樣用按鈕觸發(fā)實(shí)現(xiàn)背景色的閃爍

以上就是怎樣用image來提交form的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。




標(biāo)簽:怎樣用image來提交form