指引网

当前位置: 主页 > 网页制作 > WEB开发 >

jquery javascript获取图片的宽高代码

来源:网络 作者:佚名 点击: 时间:2017-07-19 00:35
[摘要] jquery例子 var img = $(#imageid'); var theimage = new image();t heimage.src = img.attr(src); alert(width: + theimage.width); alert(height: + theimage.height); js例子 var img = new image(); img.onload = function(){ 宽度=this.width 高度=this.he

jquery例子

var img = $(‘#imageid');

var theimage = new image();t

heimage.src = img.attr(“src”);

alert(“width: ” + theimage.width);

alert(“height: ” + theimage.height);


js例子

var img = new image();
img.onload = function(){
 宽度=this.width
 高度=this.height
}
img.src = 图片地址;

------分隔线----------------------------