亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM alt 屬性

定義和用法

alt 屬性設(shè)置或返回在瀏覽器不支持密碼域時(shí)顯示的替代文本。

語(yǔ)法

passwordObject.alt=alternate_text

實(shí)例

下面的例子可返回密碼域的替代文本:

<html>
<body>

<form>
<input type="password" alt="Password field" id="pwd1" />
</form>

<p>The alt text for the password field is:
<script type="text/javascript">
x=document.getElementById('pwd1');
document.write(x.alt);
</script></p>

</body>
</html>