HTML DOM type 屬性
定義和用法
type 屬性返回文本域的表單元素類型。對于文本域,該屬性總是返回 "text"。
語法
textObject.type
實例
下面的例子返回了文本域的表單元素類型:
<html>
<body>
<form>
<input type="text" id="text1" />
</form>
<script type="text/javascript">
x=document.getElementById("text1");
document.write("Form element type is: ");
document.write(x.type
);
</script>
</body>
</html>