位置:首頁(yè) > 軟件操作教程 > 編程開(kāi)發(fā) > HTML > 問(wèn)題詳情

HTML5 表單新屬性 2..formaction 屬性

提問(wèn)人:劉團(tuán)圓發(fā)布時(shí)間:2020-11-16

    在HTML4中,一個(gè)表單內(nèi)的所有元素都只能通過(guò)表單的action屬性統(tǒng)一提交到另一個(gè)頁(yè)面。在HTML5中,可以給所有的提交按鈕(如<input type="submit"/>、<input type="image" src="" />和<button type="submif"></button>)都增加不同的formaction屬性,單擊不同的按鈕,可以將表單中的內(nèi)容提交到不同的頁(yè)面,代碼示例如下:

<form action"" id="myForm1'>

<input type="text" name="">

<input type="submit" value="" formaction="a.php">

<input type="image" src="img/logo.png" formaction="b.php">

<button type="submit" formaction="c.php"></button>

</form>

    除了formaction屬性之外,還有formenctype、formmethod、formtarget等屬性也可以重載form元素的enctype、method、target等屬性。

繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部