国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

javascript - How to remove tags in Baidu ueditor
滿(mǎn)天的星座
滿(mǎn)天的星座 2017-05-19 10:20:44
0
2
735

Baidu's ueditor will automatically add P tags to the content. How to remove it? Nothing you can find online

滿(mǎn)天的星座
滿(mǎn)天的星座

reply all(2)
世界只因有你

Use jq, if you want to remove them all:

$("p").each(function(){
    var xx=$(this).html();
    $(this).replaceWith(xx);
 })
阿神

There is a corresponding method to obtain plain text: ueditor.getContentTxt()

The demo shows commonly used methods.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template