使用jQuery,我可以在点击时更改图像的src $("#thumb li img").click(function() {var newlinkimage = $(this).attr("src");newlinkimage = newlinkimage.substring(14,17); $("#avant img").attr("src", 'retouche-hr' + newlinkimage + '-a.jp
$("#thumb li img").click(function() { var newlinkimage = $(this).attr("src"); newlinkimage = newlinkimage.substring(14,17); $("#avant img").attr("src", 'retouche-hr' + newlinkimage + '-a.jpg'); $("#apres img").attr("src", 'retouche-hr' +newlinkimage + '-b.jpg');
问题是,新图像宽度与旧图像宽度不同.我如何获得新图像的NATIVE宽度(就像在Dreamweaver中获得该图像的小箭头一样)
这是一种简单的javascript方式.将它集成到您的代码中应该很容易.var newimage = new Image(); newimage.src = 'retouche-hr' + newlinkimage + '-a.jpg'; // path to image var width = newimage.width; var height = newimage.height;