0
アップロードされた画像を「画像を挿入する」ように配置する方法はありますか?Tinymceとあらかじめ定義されたピクチャ
image-urlフィールドの隣にボタンを生成する方法が見つかりました。これは、代替テキストを含む事前定義済みのURLを配置します。 、この方法で
<script type="text/javascript">
tinymce.init({
selector: 'textarea',
height: 350,
browser_spellcheck: true,
plugins: [
"advlist autolink lists link image charmap print preview anchor",
"searchreplace visualblocks code fullscreen",
"media table contextmenu paste imagetools"
],
toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image",
image_caption: true,
file_picker_callback: function(callback, value, meta) {
// Provide file and text for the link dialog
if (meta.filetype == 'file') {
callback('mypage.html', {text: 'My text'});
}
// Provide image and alt text for the image dialog
if (meta.filetype == 'image') {
callback('myimage.jpg', {alt: 'My alt text'});
}
// Provide alternative source and posted for the media dialog
if (meta.filetype == 'media') {
callback('movie.mp4', {source2: 'alt.ogg', poster: 'image.jpg'});
}
}
});
</script>
を一つだけ絵は可能ですが、私はの束を追加したい:このための私の完全なJavaScriptはそのようになります。何か案は?