刚刚网上看到的DISCUZ后台调用编辑器的方法这个问题困扰好久了,终于解决了
第一步加载js
- echo ' <script type="text/javascript" src="static/image/editor/editor_function.js"></script>
- <script type="text/JavaScript">
- function validate(obj) {
- edit_save();
- window.onbeforeunload = null;
- obj.form.submit();
- return false;
- }
- </script> ';
复制代码 第二步自己折腾去吧
- showtablerow('', array('class="td27"', 'class="td28"'), array('内容:<textarea class="userData" name="content" id="uchome-ttHtmlEditor" style="height: 100%; width: 100%; display: none; border: 0px">'.$info['content'].'</textarea>'));
- showtablerow('', array('class="td25"', 'class="td28"'), array(" <iframe src='home.php?mod=editor&charset={CHARSET}&allowhtml=1&isportal=0' name='uchome-ifrHtmlEditor' id='uchome-ifrHtmlEditor' scrolling='no' style='width:700px;height:400px;border:1px solid #C5C5C5;position:relative;' border=0 frameborder=0 ></iframe>",));
- showtablerow('', array('class="td25"', 'class="td28"'), array("<input id='submit_editsubmit' class='btn' type='submit' value='提交' name='editsubmit' onClick='validate(this);'>"));
复制代码
|