代码示例:(标识:hdom_button_name)
<html>
<body>

<form>
<input type="button" id="button1" name="button1" value="Click Me!" />
</form>

<p>The name of the button is: 
<script type="text/javascript">
x=document.getElementById('button1');
document.write(x.name);
</script></p>

</body>
</html>
运行结果: