我很久以前就了解到,对于动态添加的内容,必须使用$(document).on(‘click’,'[ID]’,function(){})来附加侦听器和事件(如click和focus); …等等
$('.friend_chooser_pop').html("<div id='#friend_chooser_list'></div>");@H_502_7@现在我如何访问#friend_chooser_list并设置其HTML值?这些都不起作用:
$('#friend_chooser_list').html('something'); document.getElementById('friend_chooser_list').innerHTML = 'something';@H_502_7@