3
我已經瀏覽了幾篇關於此問題的帖子,但是我一直無法解決它 - 而且現在我收到的錯誤信息對我來說沒有任何意義。TinyMCE彈出窗口空白
我有TinyMCE的加入到一個文本區域如下:
tinyMCE.init({
theme : "advanced",
mode : "textareas",
relative_urls: true,
plugins : "inlinepopups",
theme_advanced_statusbar_location : 'bottom',
theme_advanced_resizing : true,
theme_advanced_path : false,
theme_advanced_resizing_min_width : 600,
theme_advanced_resizing_max_width : 800
});
當我打開網頁,它給了我下面的錯誤:
不安全JavaScript嘗試與URL http://www.mysite.com/mypage從訪問框架框架與網址http://www.mysite.com/js/tiny_mce/themes/advanced/link.htm。域,協議和端口必須匹配。
從我所知道的情況來看,如果您嘗試跨域訪問JavaScript,則會導致此錯誤。然而,這些域似乎是相同的(我改變的唯一的東西是實際的網站名稱和實際的頁面 - 其餘的都是複製的字母)。
在文件tiny_mce_popup.js中,我按照一些建議添加了document.domain = 'www.mysite.com';
,但似乎沒有幫助。如果我將它添加到tiny_mce.js,我得到一個錯誤,我有一個無效的document.domain值。
任何意見或建議,將不勝感激。
編輯
腳本標籤,我包括TinyMCE的是:
<script type="text/javascript" src="http://www.mysite.com/js/tiny_mce/tiny_mce.js"></script>
在問題中增加了