有一个页面,在页面载入的时候,使用ajax动态创建一个input元素,如下
success: function(file, response){
response = JSON.parse(response);
img_path = response.file_path;
html = '<input type="hidden" class="goods_other_img" name="goods_other_img[]" value="'+img_path+'" />';
$('#goods_other_img').append(html);
}
jquery选择器不能选择动态添加的元素,请问该如何获得新添加的这个input?