快速的問題,大家好,我似乎無法得到這個。對()切換在這裏一起工作
$('#wrap').on('toggle', '#image', function(){
<!-- Do stuff -->
});
,以便能夠在其內部都有一個切換?有任何想法嗎?我嘗試了谷歌搜索,但沒有運氣。
這就是我試圖讓與。對工作的代碼,因爲目前它不更改應用到所有元素兒子頁,(有#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");
});
});
的可能重複[使用jQuery .live與切換事件](http://stackoverflow.com/questions/2172614/using-jquery-live-with-toggle-event) – j08691