赞
踩
jquey在使用变量进行拼接id时,两端不需要加上"“引号,本身传递的就是一个字符串。$(”#xx")也表示取一个字符串#xx。 写法:
function deleteimg(value) { var id ='#'+value; $(id).html(""); }