这个问题与我昨天问的另一个问题有关,它的链接是: Parse HTML in jquery through ajax into elements and replace each对应的页面
基本上我想用ajax调用一个php页面,并将响应中的元素替换为页面上的相应元素。我在答案中得到了以下功能:
$(data ).filter('.maindiv').each(function (index)
/* "this" is the current div in response*/
$('#'+this.id).replaceWith(this);
});
当我要替换的 div 具有常规的 id= 时,上述函数运行良好,但如果使用像 gid= 这样的自定义属性,例如它将不起作用。我怎样才能解决这个问题??
谢谢