多回調代碼:
<script>
$(document).ready(function(){
$.get("realisations.shtml",function(data){$('#realisations').empty().append(data)});
});
</script>
我需要執行$( 「toexpand」)隱藏(); beeing確認後的數據加載到DIV
這種嘗試不工作:
<script>
$(document).ready(function(){
$.get("realisations.shtml",function(data){$('#realisations').empty().append(data)},function(){$(".toexpand").hide()});
});
</script>
您不需要有多個回調,只需在單個回調中執行多個語句即可。 – tvanfosson 2009-11-26 14:36:44