Jquery TinyMCE を使用している場合、テキストを選択してハイパーリンクを追加しようとすると、[リンクの追加/編集] tinymce ポップアップ ウィンドウが表示されますが、URL を貼り付けようとすると、IE で右クリックの [貼り付け] オプションが有効にならず、Ctrl+ も有効になりません。 V作品。
これは IE ブラウザー専用です。ChromeとFFに貼り付けることができます。
これが私のtinymceの設定方法です。
:{
theme: "advanced",
mode : "specific_textareas",
editor_selector: "richtext-editor",
theme_advanced_toolbar_location:"top",
theme_advanced_toolbar_align:"left",
theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,fontsizeselect,forecolorpicker,|,link,unlink,|,bullist,numlist,|,outdent,indent,|,justifyleft,justifycenter,justifyright,|,cut,copy,paste,pastetext,|,undo,redo",
theme_advanced_buttons2:"",
theme_advanced_buttons3:"",
theme_advanced_buttons4:"",
plugins:"inlinepopups,paste",
theme_advanced_path : false,
inline_styles : true,
paste_remove_styles: true,
paste_retain_style_properties: "",
paste_convert_headers_to_strong : true,
invalid_elements : "img"
//plugins:"advlink,iespell,inlinepopups,media,print,contextmenu,paste"
}
ノート:
エディター自体への貼り付けは、すべてのブラウザーで完璧に機能します。また、コンテキストメニューを有効にしようとしましたが、運がありません。
また、貼り付けたいURLが実際にクリップボードにコピーされていることを再確認しました
ありがとう。