私は自分のウェブサイトに簡単なTinyMCEエディタをセットアップしました。私はまた、各画像の下にリンクを張ったシンプルな画像ギャラリーを持っています。私は既に、リンクが押されたときに高度な画像ダイアログを開く方法を考え出しましたが、画像のURLとして画像のURLを渡したいと思います。私はそれが可能であることを知っていると私はTinyMCEフォーラムで多くのリンクを見てきましたが、それらはすべてWikiを指し、何らかの理由で壊れています。私はいつもここで終わる:http://tinymce.moxiecode.com/wiki.php。tinyMCE AdvImageにパラメータを渡す
これは私がTinyMCEの構成方法である:
tinyMCE.init({
theme : "advanced",
skin : "cirkuit",
mode : "textareas",
language : 'sl',
plugins : "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",
theme_advanced_buttons1 : "newdocument,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,cut,copy,paste,pastetext,pasteword,|,search,replace",
theme_advanced_buttons3 : "bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,cleanup,code,|,forecolor,backcolor",
theme_advanced_buttons4 : "image,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,|,fullscreen",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
theme_advanced_resize_horizontal : false,
extended_valid_elements : "img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name]",
width : 520,
height: 500
});
と私はダイアログを開き、これを使用します。
tinyMCE.activeEditor.execCommand('mceAdvImage');
私は、これは愚かな質問である知っているが、私を助けてください。
1明確な質問 – Thariama