首页 > 代码库 > 处理动态添加的元素事件无效

处理动态添加的元素事件无效

$(document).bind("input propertychange change","事件元素选择器",function(){

});
// 搜索按钮点击事件
$(document).on(‘click‘,ele,function(){
// ele为对应的事件元素选择器 如:‘#appSpecies‘
})

处理动态添加的元素事件无效