主题: 为什么获取不了数据 |
作者: soonhot, 发布日期: 2011-09-25 09:21:35, 浏览数: 2497 |
操作系统:Windows 7
浏览器: IE8、Firefox5 KindEditor版本: 4.0 beta BUG再现步骤:
我用的是ASP,为什么获取不了编辑器里的数据 |
作者: Roddy, 发布日期: 2011-09-25 15:41:52 |
// 取得HTML内容 html = editor.html(); // 同步数据后可以直接取得textarea的value editor.sync(); html = document.getElementById('editor_id').value; // 原生API html = K('#editor_id').val(); // KindEditor Node API html = $('#editor_id').val(); // jQuery // 设置HTML内容 editor.html('HTML内容'); KindEditor的可视化操作在新创建的iframe上执行,代码模式下的textarea框也是新创建的,所以最后提交前需要将HTML数据同步到原来的textarea,editor.sync()函数会完成这个动作。 |
回复 |
作者: sunmario, 发布日期: 2011-09-25 22:57:15 |
// 取得HTML内容
-------------------------------------------------------------------------------------
请问这段代码添加到哪?
editor.html('HTML内容');
editor.html文件在哪?
('HTML内容');又是指的什么?
请高手不吝赐教! |
回复 |