欢迎访问服务器技术网-www.fuwuqijishu.com

HTML DOM forms 集合

JavaScript fuwuqijishu 2年前 (2022-09-04) 62次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML DOM forms 集合

Document 对象


定义和用法

forms 集合返回当前页面所有表单的数组集合。

语法

document.forms[].property


浏览器支持

所有主要浏览器都支持 forms 集合


实例

实例 1

返回文档中表单数量:

<html>
<body>

<form name=”Form1″></form>
<form name=”Form2″></form>
<form></form>

<p>表单数目:
<script>
document.write(document.forms.length);
</script></p>

</body>
</html>

以上实例输出结果:

表单数目: 3

实例 2

返回文档中第一个表单的名称:

<html>
<body>

<form name=”Form1″></form>
<form name=”Form2″></form>
<form></form>

<p>第一个表单名称:
<script>
document.write(document.forms[0].name);
</script></p>

</body>
</html>

以上实例输出结果:

第一个表单名称: Form1


Document 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2215.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900