我有一小塊jQuery,我隱藏然後顯示一個div。這兩個事件都完成後,我執行的幾行代碼是像這樣:在jQuery中按順序執行事件
$(".subFields").hide("slide", { direction: "up" }, 250, function() {
$(".subFields").show("slide", { direction: "up" }, 250, function() {
container.addClass("formfield");
container.removeClass("formfieldCurrent");
fillOpenFields($(this).val());
});
});
問題是在show
事件代碼entereing一個無限循環出於某種原因,任何想法。