0

私は自分のページで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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>index page</title>
</head>
<body>
    <script type="text/javascript" src="javascripts/tinymce/jscripts/tiny_mce/tiny_mce.js" >
    </script>
        <script
        type = "text/javascript" > 
        tinyMCE.init({
            mode : "textareas",
            theme : "simple",
            plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template"
        });
    </script>

    <form method="post" action="somePage.php">
        <textarea name="textAreaContent" style="width:100%"> 
    This is some content that will be editable with TinyMCE.
    </textarea>
    <br />
    <button type="submit">Submit</button>
    </form>
</body>

私はjavascriptのリンクを確認しましたが、tatは完璧です。いくつかのplsは私を助けることができます...

4

1 に答える 1

0

あなたのコードは問題ありません。バージョン 3.4.7 でテストしたところです。見つからないプラグインを探します: javascripts/tinymce/jscripts/tiny_mce/plugins

于 2012-01-24T13:31:05.123 に答える