img").each(function(){ $(img).css({ -6ren">
gpt4 book ai didi

jquery - 为 div 中的所有 imgs 赋予属性

转载 作者:行者123 更新时间:2023-12-01 02:12:35 25 4
gpt4 key购买 nike

我希望 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);


});

最佳答案

使用$(this)

 $("#images > img").each(function(){
$(this).css({
margin-top:15px;
margin-bottom:15px;
});
});

关于jquery - 为 div 中的所有 imgs 赋予属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13564570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com