Jquery去除从数据库中查询到的内容含有的p标签

$("#topic_content").html($("#topic_content").text());

 

如果这个数据是通过循环遍历出的数据,就需要下面这个代码了。

1 $(".search_result_content").each(function(index,obj){
2                 var e_obj=$(obj)
3                 e_obj.html(e_obj.text());
4                 
5                 });

Jquery去除从数据库中查询到的内容含有的p标签,布布扣,bubuko.com

Jquery去除从数据库中查询到的内容含有的p标签

上一篇:使用multiprocessing 克服GIL缺陷-- 进程间通讯


下一篇:mongodb内嵌文档的查询