目标即8和更低,将'x-img src'转换回'img src'

时间:2013-12-26 17:45:44

标签: javascript image internet-explorer

我使用mobify.js作为我的响应式图像。但是,我必须在我的img src之前添加'x',因此它会读取'x-img src'。这适用于除8及以下的所有浏览器。

所以我的问题是,有没有办法使用javascript将'x-img src'标签更改回正常的'img src'标签?

1 个答案:

答案 0 :(得分:0)

//sets the image source equal to the x-src
element.setAttribute('src',element.getAttribute('x-src'));
//removes x-src
element.removeAttribute('x-src');