私はtinymce 3.4.7をダウンロードしましたが、 "For Dummies"で指定されたすべての必要なものは実行しましたが、それでも十分ではないようです。私はすべてのコードを自分のhtmlページの先頭に追加した後、ページの本文にあるテキスト領域のみを与えます。パッケージ内の指定された例に似たフルテキストエディタを提供する必要がありますが、それは私のために働いていません 以下は私が使用しているリンクです。本当に私のために働いていない。 http://www.tinymce.com/wiki.php/For_Dummiestinymce 3.4.7を実行する際の問題
<head>
<script type="text/javascript" src="D:/tinymce_3.4.7/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script >
<script type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "advanced",
plugins : "emotions,spellchecker,advhr,insertdatetime,preview",
// Theme options - button# indicated the row# only
theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
});
</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>
<input type="submit" value="Save" />
</p>
</form>
</body>
</html>
サンプルコードなしではお手伝いできません。私は[ダミーのための](http://www.tinymce.com/wiki.php/%22For_Dummies%22)をたどることが、動作しないページにつながったことに非常に興味があります。 – Alex
コードを共有してください。 JsFiddle.netはいいでしょう:-) – Qorbani