Form action 屬性
Form 對象定義和用法
action 屬性可設(shè)置或返回表單的 action 屬性。
action 屬性定義了當(dāng)表單被提交時(shí)數(shù)據(jù)被送往何處。
語法
formObject.action=URL
瀏覽器支持
所有主要瀏覽器都支持 action 屬性
實(shí)例
實(shí)例
返回表單提交的 URL :
<html>
<body>
<form id="frm1" action="form_action.html">
First name: <input type="text" name="fname" value="Donald"><br>
Last name: <input type="text" name="lname" value="Duck"><br>
<input type="submit" value="Submit">
</form>
<script>
document.write(document.getElementById("frm1").action);
</script>
</body>
</html>
<body>
<form id="frm1" action="form_action.html">
First name: <input type="text" name="fname" value="Donald"><br>
Last name: <input type="text" name="lname" value="Duck"><br>
<input type="submit" value="Submit">
</form>
<script>
document.write(document.getElementById("frm1").action);
</script>
</body>
</html>
以上實(shí)例輸出結(jié)果:
form_action.html
嘗試一下 ?
Form 對象
更多建議: