我已经将CKEditor用于我的文本框样式。我已经完成了添加到我的文本框中但是如果我想从文本框中获取我的id,那么它会给出未定义的值。任何人都可以帮我解决我的查询,这对我有帮助。
<script src="//cdn.ckeditor.com/4.5.11/standard/ckeditor.js"> </script>
<script> CKEDITOR.replace( 'editor1' ); </script>
<script>
$(document).ready(function(){
var topic_describe=$("#add_val").html();
alert(topic_describe);
});
</script>
&#13;
<textarea name="editor1" id="add_val"></textarea>
<br/>
<a href='#' class="btn btn-success" style=' padding-top:10px;' id='submit' ><strong><span class='glyphicon glyphicon-pencil'></span> Add Post </strong></a>
&#13;
答案 0 :(得分:0)
您的代码看起来很好。只需验证以下几点:
jquery.js
和ckeditor.js
,然后再使用<head>
id
与您的JS 如果是,您是否遗漏了可能相关的任何其他细节?
退房:
$(document).ready(function() {
CKEDITOR.replace('editor1');
var topic_describe = $("#add_val").html();
alert(topic_describe);
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.ckeditor.com/4.5.11/standard/ckeditor.js">
</script>
<textarea name="editor1" id="add_val">************* This is the Text inside the Textarea *************</textarea>
<br/>
<a href='#' class="btn btn-success" style=' padding-top:10px;' id='submit'><strong><span class='glyphicon glyphicon-pencil'></span> Add Post </strong></a>
&#13;