HTML事件屬性onsubmit

2018-01-05 13:58 更新

HTML事件屬性onsubmit


提交表單時(shí)會(huì)觸發(fā) onsubmit 屬性事件。

HTML5中的新功能

沒有。

句法

<form onsubmit="script">

支持的標(biāo)簽

<form>, <keygen>

Click to view the demo

瀏覽器兼容性

onsubmit Yes Yes Yes Yes Yes


例子

<!DOCTYPE html>
<html>
<body>

<form action="a.php" onsubmit="myFunction()">
  Enter name: <input type="text" name="fname">
  <input type="submit" value="Submit">
</form>

<script>
function myFunction() {
    console.log("The form was submitted");
}
</script>

</body>
</html>

Click to view the demo



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)