我正在努力让TinyMCE工作,我正在努力。这是我的完整页面:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<title>TinyMCE Test</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
mode: "textareas"
});
</script>
</head>
<body>
<form method="post" action="show.php">
<p>
<textarea name="content" cols="50" rows="15">This is some content that will be editable with TinyMCE.</textarea>
<br />
<input type="submit" value="Save" />
</p>
</form>
</body>
</html>
找到了JS文件,php文件还不存在(虽然我不认为这会有问题吗?)
但是当我在Chrome或IE8中加载页面时,文本框看起来总是如此?
我不知道它是否相关但我在chrome中遇到了脚本错误:对象没有方法'extend'
为什么我没有收到网站上显示的更新文本框?