document.forms⽤法⽰例介绍概述
forms 返回⼀个集合 (⼀个HTMLCollection对象),包含了了当前⽂档中的所有form元素.
语法
var collection = document.forms;
例⼦
获取表单信息
<script type="text/javascript">
$(function(){
html document是什么
var thisForm = document.forms['form1']; //获取name为form1的form表单
//或者
//var thisForm = document.forms[0]; //获取第⼀个form表单
console.info(thisForm.username.value); //输出表单name属性值为form1的 username的值
console.info(thisForm.address.value);
document.forms[0].submit(); //表单提交
})
</script>
<body>
<!-- 以下为三个简单的form表单 -->
<form action="x" name="form1" >
<input type="text" name="username" value="zhangsan" />
<input type="text" name="address" value="beijing" />
</form>
<form action="x" name="form2" >
</form>
<form action="x" name="form3" >
</form>
</body>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。