HTML DOM id 属性

定义和用法

id 属性可设置或返回单选按钮的 id。

语法

radioObject.id=id

实例

下面的例子可提示出单选按钮的 id:

<html>
<body>

<form>
<input type="radio" id="radio1" />
</form>

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

</body>
</html>