我想重點放在加載頁面後的表單的第一個輸入,但它不工作!在Jquery中加載頁面後設置焦點?
$("#New").click(function() {
var area = $(this).attr("name");
$("#txtHint").hide().load("add_data.php?area=" + area, function(){
$(this).closest("form").find(':input:enabled:visible:first').focus();
}).fadeIn('slow');
//$(this).closest("form").find(':input:enabled:visible:first').focus();
});
我可以幫忙嗎?
的語法高亮上面,你可以看到你沒有正確關閉雙引號。 –
修復語法錯誤並重試:'$(「#txtHint」)。hide()。load(「add_data.php?area =」+ area,function(){...}); ' –
@scrowler另外[選擇器](http://api.jquery.com/input-selector/) – George