在javascript中为图像添加alt属性

时间:2013-03-18 07:28:44

标签: javascript image alt

我想知道如何在javascript中为图像添加alt属性,下面是我的代码......

var image = document.createElement('img');
image.src='../../KY/images/common/buttons/browseIcon.png';

提前致谢。

3 个答案:

答案 0 :(得分:12)

您有两种方法:可以使用alt属性

image.alt = "Your text here"

setAttribute方法

image.setAttribute("alt","Your text here");

答案 1 :(得分:0)

您可以使用alt property

答案 2 :(得分:0)

当你在dom javascript中创建按钮或任何其他元素时,上面提到的方法不起作用,为此使用下面提到的方法

control.setAttribute("title","your tooltip value")