js表单操作实例:javascript如何获取网页表单action属性?

发布时间:2020-07-22编辑:脚本学堂
javascript如何获取表单action属性,在页面中可以使用js的action属性,取得form表单中的action属体,具体操作方法见本文给出的例子。

javascript获取网页表单action属性

javascript获取网页表单的action属性,即要提交到的url地址,有时需要提交到当前页面,则可能会设置action为空。

例子:
 

复制代码 代码示例:
<!doctype html>
<html>
<body>
<form id="frm1" action="jbxue.php">
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>
<p>the value of the action attribute is:
<script>
document.write(document.getelementbyid("frm1").action);
</script>
</p>
</body>
</html>

运行结果:
the value of the action attribute is:jbxue.php