我有这样的 js(我也使用 jQuery):
$(".article_big_photo").click(function() {
$('#screen').css({ opacity: 0.5, 'width':$(document).width(),'height':$(document).height()});
$('#screen').show();
$('#article_photo_modal').show();
var image = document.createElement("img");
var url = $(this).attr("b_img");
$(image).attr("src", url);
$('#article_photo_modal').css({ 'margin':$(image).height()+" 0 0 -270px"});
$('.photo_innerbox').append(image);
});
但是当我尝试获取图像大小时,我看到它的高度(根据我的代码)为 0。
如何附加、获取和设置 css 图像大小?我的代码不起作用