我想捕获/处理指定项目的负载(如果它是动态加载的)。
如果事件是click
它工作正常:
$('#articles').on("click",".article",function(eo){
//...
});
这是我尝试过的:
$(document).on("load","input",function(){
alert(1);
});
这就是我将如何使用它:
<input type=hidden name='size' value=1>
<select name='size'>
<option value=0>A4</option>
<option value=1>A3</option><!--this will be selected, that is indicated with the hidden input-->
</select>
执行此操作的脚本:
$(document).on("load","input",function(e){
var name = e.attr("name");
var val = e.val();
if(name!=""&& typeof(e)!="undefined")
{
e.parent().find('select[name='+name+']').val(val);
}
});
如果可能的话,我在问某种 on() 函数,因为手册说它是首选。