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

HTML DOM type 屬性

定義和用法

type 屬性返回文本域的表單元素類(lèi)型。對(duì)于文本域,該屬性總是返回 "text"。

語(yǔ)法

textObject.type

實(shí)例

下面的例子返回了文本域的表單元素類(lèi)型:

<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>