HTML DOM name 属性

定义和用法

name 属性可设置或返回确认按钮的名称。

语法

  1. submitObject.name=name

实例

下面的例子可显示出该确认按钮的名称:

  1. <html>
  2. <body>
  3.  
  4. <form>
  5. <input type="submit" id="submit1" name="submit1" />
  6. </form>
  7.  
  8. <p>The name of the submit button is:
  9. <script type="text/javascript">
  10. x=document.getElementById('submit1');
  11. document.write(x.name);
  12. </script></p>
  13.  
  14. </body>
  15. </html>