我正在使用http://retinajs.com将图像换成高分辨率设备,但是在使用 jquery 更改图像时,它似乎不起作用,例如:
$(document).ready(function () {
$("#country").hover( function () {
$("#profilePic").attr("src","img/country.png");
} );
});
在视网膜屏幕上应该是
$("#profilePic").attr("src","img/country@2x.png");
非常感谢