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