首頁 > 問答 > 主體
百度的ueditor會自動為內容加上P標籤,怎麼去掉呢?網路上找的都不行
世界只因有你2017-05-19 10:22:44
用jq吧,如果要全部去掉的話:
$("p").each(function(){ var xx=$(this).html(); $(this).replaceWith(xx); })
阿神2017-05-19 10:22:44
有對應的獲取純文本的方法:ueditor.getContentTxt()
ueditor.getContentTxt()
示範 demo 裡面都展示了常用的方法。