欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM type 屬性

定義和用法

type 屬性可返回單選按鈕的表單元素類型。對(duì)于單選按鈕,該屬性總是 "radio"。

語法

radioObject.type

實(shí)例

下面的例子可返回單選按鈕的表單元素類型:

<html>
<body>

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

<script type="text/javascript">
x=document.getElementById("radio1");
document.write("Form element type is: ");
document.write(x.type);
</script>

</body>
</html>