HTML5 表單新屬性 2..formaction 屬性
在HTML4中,一個表單內(nèi)的所有元素都只能通過表單的action屬性統(tǒng)一提交到另一個頁面。在HTML5中,可以給所有的提交按鈕(如<input type="submit"/>、<input type="image" src="" />和<button type="submif"></button>)都增加不同的formaction屬性,單擊不同的按鈕,可以將表單中的內(nèi)容提交到不同的頁面,代碼示例如下:
<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等屬性。
點擊加載更多評論>>