有没有办法使用jquery设置图像的高度和宽度? 以下是我的代码
var img = new Image();
// Create image
$(img).load(function(){
imgdiv.append(this);
}).error(function () {
$('#adsloder').remove();
}).attr({
id: val.ADV_ID,
src: val.ADV_SRC,
title: val.ADV_TITLE,
alt: val.ADV_ALT
});
感谢。
答案 0 :(得分:23)
var img = new Image();
// Create image
$(img).load(function(){
imgdiv.append(this);
}).error(function () {
$('#adsloder').remove();
}).attr({
id: val.ADV_ID,
src: val.ADV_SRC,
title: val.ADV_TITLE,
alt: val.ADV_ALT
}).height(100).width(100);
答案 1 :(得分:8)
$(".img1").css('height','10');
$(".img1").css('width','10');
OR
$(".img1").attr('height','10');
$(".img1").attr('width','10');
答案 2 :(得分:0)
如果图片在<div class="myGallery">
$('div.myGallery > img').css({ 'height': '10px', 'width': '10px' });