HTML DOM alt 属性

Button 对象参考手册


定义和用法

alt 属性可设置或返回当浏览器不支持按钮时要显示的替换文本。

语法

buttonObject.alt=alternate_text


实例

下面的例子可返回按钮的 alt 文本:

<html>
<body>

<form>
<input type="button" alt="Button" id="button1"
value="Click me" />
</form>

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

</body>
</html>

返回按钮的替换文本



Button 对象参考手册

粤ICP备11097351号-1