色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

HTML事件屬性onsubmit


HTML事件屬性onsubmit


提交表單時會觸發onsubmit屬性事件。

HTML5中的新功能

沒有。

句法

<form onsubmit="script">

支持的標簽

<form>, <keygen>

Click to view the demo

瀏覽器兼容性

HTML事件屬性onsubmitHTML事件屬性onsubmitHTML事件屬性onsubmitHTML事件屬性onsubmitHTML事件屬性onsubmit
onsubmitYesYesYesYesYes


例子

<!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