3
我使用Ajax加載窗體的部分。如何在ajax請求後關注textarea對象?JQuery:焦點textarea後ajax加載
這是加載的HTML:
<legend>Test</legend>
<label for="t">This is only a test</label>
<textarea></textarea>
<a href="#" class="continue">Continue</a>
這是JQuery的/ Ajax代碼:
$.post(
'ajax.php',
{ next:next },
function(data){
$('body').append($(data).hide().fadeIn('slow'));
}
);
感謝。