<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="js/utf8-jsp/ueditor.config.js"></script> <script src="js/utf8-jsp/ueditor.all.min.js"></script> <script src="js/jquery-3.2.1.min.js"></script> <style> #editor-container { width: 100%; height: 100%; } </style> </head> <body> <div id="editor-container"></div> <button id="btn1">获取编辑器中的内容getContent()</button> <button id="btn2">获取编辑器中的内容getPlanTxt()</button> <button id="btn3">获取编辑器中的内容getContentTxt</button> </body> <script> var ue = UE.getEditor('editor-container'); ue.ready(function(){ ue.setContent('<i>请在此处编写内容!</i>'); ue.setContent('<p>雄关漫道真如铁,而今迈步从头越。</p>',true); }); $('btn1').click(function(){ var html = ue.getContent(); alert(html); }); $('btn2').click(function(){ var html = ue.getPlainTxt(); alert(html); }); $('btn3').click(function(){ var html = ue.getContentTxt(); alert(html); }); $(window).on('resize', function() { ue.resize(); }); </script> </html>
时间: 2023-12-08 07:04:23 浏览: 72
-doctype-html-html-lang-en-dir-ltr-head-meta-name:
代码看起来没有明显的语法错误。不过需要注意的是,这段代码使用了UEditor富文本编辑器以及jQuery库,如果您没有正确引入这些文件,代码将无法正常运行。同时,如果您希望在点击按钮时执行相应操作,需要在按钮id前添加#以表示选取id,例如$('#btn1').click(function(){...})。
阅读全文