小伙伴们在这里快速提问,我似乎无法得到这个
$('#wrap').on('toggle', '#image', function(){
<!-- Do stuff -->
});
能够在里面有一个切换?有任何想法吗?我试过谷歌搜索,但没有运气。
这是我试图使用.on的代码,因为目前它不会将更改应用于页面上的所有元素(具有#image和#brick)
$("#result_options").toggle(function() {
var image_width = $('#image').width() / 2;
var brick_width = $('#brick').width() / 2;
$("#image").css("width",image_width);
$("#image").css("padding","4px");
$("#brick").css("width",brick_width);
},function (){
$("#image").css("width","300");
$("#image").css("padding","8px");
$("#brick").css("width","314");
$(this).html("Smaller Results");
});
});