我使用mobify.js作为我的响应式图像。但是,我必须在我的img src之前添加'x',因此它会读取'x-img src'。这适用于除8及以下的所有浏览器。
所以我的问题是,有没有办法使用javascript将'x-img src'标签更改回正常的'img src'标签?
答案 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');