为什么Cl Editor无法在Popup中工作。有时可能是它的工作
这是我可以使用ajax在弹出窗口中运行的代码: 它可能是一段时间工作或一段时间不能工作: List.php可以显示作业列表。在tr td标签上。
list.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>
答案 0 :(得分:1)
尝试在弹出的点击事件中添加编辑器的jQuery代码(在document.ready函数中)。