6

tinymce の構成は以下のとおりです。ハイパーリンクのクリック結果を別のタブまたはウィンドウで開きたい。以下のように使用theme_advanced_link_targets : "_blank"しましたが、役に立ちませんでした。このための他の cofig パラメータはありますか?

  var tinyMCESettings = {
    theme : "advanced",
    plugins : "preview",
    readonly : readOnly,
    theme_advanced_buttons1 : "forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull",
    width : width,
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "false",
    theme_advanced_link_targets : "_blank",
    forced_root_block : false,
    relative_urls : false,
    remove_script_host : false
  }
4

2 に答える 2

8

パラメータで解決しました

    extended_valid_elements : "a[href|target=_blank]"
于 2013-09-20T04:15:35.527 に答える