单击时再激活
代码:
onclick="javascript:tinyMCEinit()"
<script language="javascript">
function tinyMCEinit()
{tinyMCE.init()
}
这个几乎不需要配置啊。 你先把tineymce安装好。这个看它的教程中的installation就可以搞定。
<!-- Place inside the <head> of your HTML --><script type="text/javascript" src="<your installation path>/tinymce/tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
selector: "textarea"
})
</script>
<!-- Place this in the body of the page content -->
<form method="post">
<textarea></textarea>
</form>
你只需要将form中的action写成你的django对应的处理的path就可以了。
内容加载,可能就需要用template了。
1、图片在数据库内只占用一个字段,这个字段内只写图片的地址,在调用的时候调用地址就行了。2、数据库只需要存储HTML(或者是其他标记性的语言)代码(图片则会上传到网站指定目录以文件方式存储)。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)