4

Expression Engine を介して html を生成する div があります。私はajax送信を使用しています:

$('#login-form').ajaxForm({  
    // success identifies the function to invoke when the server response 
    // has been received; here we apply a fade-in effect to the new content 
    success: function() { 
    $("#panel").RELOAD!!();//Just refresh this div!
    } 
}); 

#panel div をリロード/リフレッシュしたいだけです。

4

3 に答える 3

4

私はあなたがそのようなものを探していると仮定します:

$('#login-form').ajaxForm({  
    success: function( data) { 
    $("#panel").html( data);//Will insert new content inside div element.
    } 
});

修理:

$('#login-form').ajaxForm({ 
    target: '#panel', //Will update the "#panel"
    success: function( data) { 
    alert( "Success");
    } 
});
于 2009-05-31T20:30:00.387 に答える
1

jQueryの「操作」セクションにリストされているメソッドのほとんどは、あなたが望むことをするつもりです: http://docs.jquery.com/Manipulation

于 2009-05-31T20:46:25.143 に答える
0

そして、あなたのかわいいフェードインのために

success : function(data) {
   $("#panel").hide().html(data).fadeIn('fast');
} 
于 2009-05-31T20:50:29.300 に答える