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

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

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

 $(".search_result_content").each(function(index,obj){
var e_obj=$(obj)
e_obj.html(e_obj.text()); });
上一篇:UICollectionView具体解释


下一篇:将项目上传到gitee