当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM id 属性
The id property sets or returns the id of the form.
id属性可用来设置或返回表单的id
formObject.id=id |
The following example shows two methods on how to return the id of the <form> element:
下面的举例将使用两种方法来返回<form>元素的id:
<html> <form id="myForm"> <script type="text/javascript"> </body> |
Get the id from a <form> element
得到<form>元素的id