如何在ckeditor中使用textbox的id(与ajax一起使用)

时间:2016-10-03 11:46:44

标签: javascript php ajax

iOS 10我已经将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>&nbsp;Add Post </strong></a>
&#13;
&#13;
&#13; 正如您在单击按钮后在图像中看到的那样,输出未定义。

1 个答案:

答案 0 :(得分:0)

您的代码看起来很好。只需验证以下几点:

  1. 您正在加载jquery.jsckeditor.js,然后再使用<head>
  2. Textarea id与您的JS
  3. 相同

    如果是,您是否遗漏了可能相关的任何其他细节?

    退房:

    &#13;
    &#13;
    $(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>&nbsp;Add Post </strong></a>
    &#13;
    &#13;
    &#13;