我希望 div 中的所有图像都具有一定的边距属性,我似乎无法让它工作,这是我尝试过的,
$("#images > img").each(function(){
$(img).css({
margin-top:15px;
margin-bottom:15px;
});
});
谢谢你的帮助
$("#pt_figures").click(function() {
$('#images').empty();
$('#images').css({
paddingLeft: 150,
paddingRight: 0
});
$('#controls').css({
width:700,
marginLeft:150
});
$('#info').css({
width:660,
marginLeft:150
});
var id = $(this).attr('id');
$("#info_header").load(id +"_header.txt"); $("#content_1").load(id +"_1.txt"); $("#content_2").load(id +"_2.txt"); $("#content_3").load(id +"_3.txt");
$("<img>", { src: "http://www.klossal.com/figures_doc.jpg" }).appendTo("#images");
$("<img>", { src: "http://www.klossal.com/figure_front.png" }).appendTo("#images");
$("<img>", { src: "http://www.klossal.com/figure_back.jpg" }).appendTo("#images");
$("#images img").addClass("images");
$("#top_section").animate({
height: 3780
}, 300);
$("#grid").animate({
marginTop: 3780 + 300,
paddingBottom: 300
}, 300);
});