我有一个输入字段,通过location.href reload附加到div标签。如何使用jQuery选择输入字段?如果我将它添加到页面它将无法工作,我假设因为输入尚未加载到DOM中。
$('#fileName1').focus(function() {
alert('Handler for .focus() called.');
});
答案 0 :(得分:2)
使用
$('#fileName1').live('focus', function() {
alert('Handler for .focus() called.');
});