在HTML4中,一个表单内的所有元素都只能通过表单的action属性统一提交到另一个页面。在HTML5中,可以给所有的提交按钮(如<input type="submit"/>、<input type="image" src="" />和<button type="submif"></button>)都增加不同的formaction属性,单击不同的按钮,可以将表单中的内容提交到不同的页面,代码示例如下:
<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等属性。
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>