使用Javascript设置和获取图像属性

时间:2014-05-09 13:23:36

标签: javascript html

如何使用HTML中的javascript获取和设置图像属性

就像使用Javascript生成图像HTML元素一样?

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

建议先阅读文档。

var image = document.images[0];
var width = parseInt(image.getAttribute('WIDTH')); //for get attribute width of image
image.setAttribute("class","thumbnail"); //for setting attribute class of Image

这里是图像的文档属性

https://developer.mozilla.org/en/docs/Web/API/HTMLImageElement