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

HTML DOM alt 屬性

定義和用法

alt 屬性可設(shè)置或返回在瀏覽器不支持重置按鈕時顯示的替代文本。

語法

resetObject.alt=alternate_text

實例

下面的例子可返回重置按鈕的 alt 文本:

<html>
<body>

<form>
<input type="reset" alt="Reset button" id="reset1" />
</form>

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

</body>
</html>