0

为什么 Cl Editor 不能在 Popup 中工作。有时可能是它的工作

这里是 Cl 编辑器图片

这是我可以使用 ajax 在弹出窗口中运行的代码:它可能是一些时间工作或有时不能工作:List.php 可以显示工作列表。在 tr td 标签上。

列表.php

<div id="default-modal" class="modal fade" tabindex="-1" role="dialog"></div>
<td  width="5%" class="text-center"><a onclick="show_popup(<?php echo $id; ?>)" rel="<?php echo $id; ?>"  class="btn btn-default btn-xs btn-icon"><i class="icon-file6"></i></a></td>

<script type="text/javascript">

function show_popup(id)
{
   $('#default-modal').modal('show');
   $.ajax({
      url: 'job_popup.php',
      type: 'post',
      data: {id:id},
      cache: false,
      success: function(response)
       {
        $('#default-modal').html(response);
       }
 });

}

job_popup.php

<link rel="stylesheet" href="cleditor/jquery.cleditor.css" />
<script src="cleditor/jquery.cleditor.js"></script>
<script src="cleditor/jquery.cleditor.min.js"></script>
<script>
    $(document).ready(function () {
     $("#desc").cleditor();
          });
    $('.form-control').each(function(){
this.contentEditable = true;
  });
</script>



 <textarea rows="5" cols="5" name="desc" id="desc" class="form-control"><?php echo $desc?> </textarea>
4

1 回答 1

1

尝试在弹出的点击事件中添加编辑器的 jQuery 代码(在 document.ready 函数中)。

于 2017-01-18T11:11:02.990 回答