百度UEditor编译器中添加HTML最快捷的办法

之前写了一篇关于百度百度UEditor编译器中添加HTML的博客:

http://blog.csdn.net/yingjia11/article/details/78443319

我的html代码是这样的:


js代码是这样的

var editor = new UE.ui.Editor();
	editor.render('editor');
	editor.addListener( 'ready', function(edt) {  
        var content_old = $('#content').html();  
        if(content_old!=''){
            editor.execCommand('insertHtml', content_old);  
        }  
    });
但后来看评论说,可以直接把代码放script标签中,我就尝试地去掉code标签:


然后js里面去掉

//	editor.addListener( 'ready', function(edt) {  
//        var content_old = $('#content').html();  
//        if(content_old!=''){
//            editor.execCommand('insertHtml', content_old);  
//        }  
//    }); 
这部分,发现果然也可以,但是反复操作后发现,怎么前后空格行越来越多了

百度UEditor编译器中添加HTML最快捷的办法_第1张图片


折腾了半天,原来是因为默认把script中的全部内容放上去了,所以html里面这样写就好了

中间不能加任何空格或者换行!

搞定!



你可能感兴趣的:(百度UEditor)