主题: 4.0版本,请问JS中该怎么获取编辑框中的值? |
作者: SnowseaL, 发布日期: 2011-09-06 11:10:07, 浏览数: 4750 |
asp.net页面加载
<div class="new-content">
<script type="text/javascript">
----------------------------------------------------------- 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 |
回复 |