如何在tinymce textarea中显示HTML页面。
<?php
$filename = "template-3.html";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
echo $contents;
?>
我使用上面的代码来显示html页面。但是,它只显示textarea中的文本内容,并且不显示html页面的图像和位置。
为了显示html页面,我需要做什么,如:
答案 0 :(得分:0)
您可以进行ajax调用并返回可以随意添加的html页面。
<script>
$.ajax({
url:"http://zurb.com/ink/downloads/templates/hero.html#",
success:function(result){
$("#textarea").html(result);
}});
</script>
答案 1 :(得分:0)
以下代码在textarea字段中显示html预览。我不知道这是否是一种正确的实施方式。但是,我得到了我想要的结果。
tinyMCE.activeEditor.setContent($('div div#template1').html());
谢谢,