当前位置 : 主页 > 网页制作 > JQuery >

jquery中的图像原始宽度

来源:互联网 收集:自由互联 发布时间:2021-06-15
使用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
使用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.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;
网友评论