为什么 Cl Editor 不能在 Popup 中工作。有时可能是它的工作
这是我可以使用 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>