當我對代碼進行必要的更改時,下面提到的全功能示例似乎並不奏效。有沒有人遇到同樣的問題?TinyMce 4.08無法正常工作
來源:http://www.tinymce.com/tryit/full.php
他們說,這是在測試版階段,但我不知道它至少應該工作。
我使用TinyMCE 4.0.8而不是其他兩個。嘗試使用其他兩個,它沒有工作。
P.S:我一直在使用JavaScript的正確路徑。
這裏是我使用的代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Email Interface</title>
<!-- Place inside the <head> of your HTML -->
<script type="text/javascript" src="tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
selector: "textarea",
theme: "modern",
plugins: [
"advlist autolink lists link image charmap print preview hr anchor pagebreak",
"searchreplace wordcount visualblocks visualchars code fullscreen",
"insertdatetime media nonbreaking save table contextmenu directionality",
"emoticons template paste textcolor moxiemanager"
],
toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image",
toolbar2: "print preview media | forecolor backcolor emoticons",
image_advtab: true,
templates: [
{title: 'Test template 1', content: 'Test 1'},
{title: 'Test template 2', content: 'Test 2'}
]
});
</script>
</head>
<body>
<p>Create an Email Message</p>
<p> </p>
<p>From address :
<input type="text" name="textfield" id="textfield" />
</p>
<p>Email Subject :
<input type="text" name="textfield2" id="textfield2" />
</p>
<p> </p>
<p> </p>
<!--<form method="post">
<textarea></textarea>
</form> -->
<form method="post" action="somepage">
<textarea name="content" style="width:100%"></textarea>
</form>
<p> </p>
</body>
</html>
向我們展示你的代碼,服務器上託管的,所以我們可以看到什麼問題 –