主题: 4.0版本,请问JS中该怎么获取编辑框中的值?
作者: SnowseaL, 发布日期: 2011-09-06 11:10:07, 浏览数: 4750

asp.net页面加载

                <div class="new-content">
                <textarea id="Description" name="Description" cols="80" rows="10" style="width:916px;height:720px;visibility:hidden;"></textarea>
                </div>

 

<script  type="text/javascript">
    KindEditor.ready(function(K) {
        var editor1 = K.create('#Description', {
            cssPath : '<%=GlobalSettings.CommonPage%>/kindeditor4.0/plugins/code/prettify.css',
            uploadJson : '<%=GlobalSettings.CommonPage %>/kindeditor4.0/upload_json.ashx',
            fileManagerJson : '<%=GlobalSettings.CommonPage %>/kindeditor4.0/file_manager_json.ashx',
            allowFileManager : true
            
        });
        prettyPrint();
    });
</script>

 

-----------------------------------------------------------

js中:

    function AddDocument()
   {

        alert($.trim($("#Description").val()));

    }

 

弹出的结果是空的?!难道不是这么取值的吗?

 

 

作者: Roddy, 发布日期: 2011-09-06 12:19:35
// 取得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
回复
发表新帖 发表回复