TinyMCE - IE8 错误

发布于 2024-09-24 13:05:34 字数 1700 浏览 0 评论 0原文

我正在一堆浏览器中测试我的页面,在 IE 8 中我收到以下错误:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)
Timestamp: Mon, 20 Sep 2010 20:03:46 UTC


Message: Invalid argument.
Line: 1314
Char: 7
Code: 0
URI: http://192.168.1.93/JS/tiny_mce/tiny_mce_src.js

知道如何解决此问题吗?我的 TinyMCE 版本是:

majorVersion : '3',
minorVersion : '3.9',
releaseDate : '2010-09-08',

我的 init 是:

tinyMCE.init({
'mode' : 'exact', 
'elements' : 'EDITOR', 
'auto_focus' : 'EDITOR', 
'theme' : 'advanced', 
'plugins' : 'safari,save,preview,table,paste,insertdatetime', 
'height' : h, 
'width' : w, 
'cleanup_on_startup' : true, 
'fix_list_elements' : true, 
'fix_table_elements' : true, 
'fix_nesting' : false, 
'theme_advanced_layout_manager' : 'SimpleLayout', 
'theme_advanced_toolbar_location' : 'top', 
'theme_advanced_toolbar_align' : 'left', 
forced_root_block : '', 
'theme_advanced_buttons1' : 'save, cancel, |, fontselect, fontsizeselect, formatselect, |, backcolor, forecolor, |, selectall, cut, copy, paste, pastetest, pasteword, |, undo, redo', 
'theme_advanced_buttons2' : 'anchor, link, unlink, |, bold, italic, underline, strikethrough, sub, sup, |, numlist, bullist, charmap, |, outdent, indent, |, justifyleft, justifycenter, justifyright, justifyfull, |, insertdate, inserttime', 
'theme_advanced_buttons3' : 'tablecontrols', 
'theme_advanced_font_sizes' : '8pt,9pt,10pt,11pt,12pt,14pt,16pt,17pt,18pt,19pt,20pt,25pt,30pt,35pt,40pt', 
'theme_advanced_buttons3_add' : '|, code', 
'end' : 'end', 
});

I'm testing my page in a bunch of browsers and in IE 8 i get the following error:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)
Timestamp: Mon, 20 Sep 2010 20:03:46 UTC


Message: Invalid argument.
Line: 1314
Char: 7
Code: 0
URI: http://192.168.1.93/JS/tiny_mce/tiny_mce_src.js

Any idea on how to fix this? My TinyMCE version is:

majorVersion : '3',
minorVersion : '3.9',
releaseDate : '2010-09-08',

My init is:

tinyMCE.init({
'mode' : 'exact', 
'elements' : 'EDITOR', 
'auto_focus' : 'EDITOR', 
'theme' : 'advanced', 
'plugins' : 'safari,save,preview,table,paste,insertdatetime', 
'height' : h, 
'width' : w, 
'cleanup_on_startup' : true, 
'fix_list_elements' : true, 
'fix_table_elements' : true, 
'fix_nesting' : false, 
'theme_advanced_layout_manager' : 'SimpleLayout', 
'theme_advanced_toolbar_location' : 'top', 
'theme_advanced_toolbar_align' : 'left', 
forced_root_block : '', 
'theme_advanced_buttons1' : 'save, cancel, |, fontselect, fontsizeselect, formatselect, |, backcolor, forecolor, |, selectall, cut, copy, paste, pastetest, pasteword, |, undo, redo', 
'theme_advanced_buttons2' : 'anchor, link, unlink, |, bold, italic, underline, strikethrough, sub, sup, |, numlist, bullist, charmap, |, outdent, indent, |, justifyleft, justifycenter, justifyright, justifyfull, |, insertdate, inserttime', 
'theme_advanced_buttons3' : 'tablecontrols', 
'theme_advanced_font_sizes' : '8pt,9pt,10pt,11pt,12pt,14pt,16pt,17pt,18pt,19pt,20pt,25pt,30pt,35pt,40pt', 
'theme_advanced_buttons3_add' : '|, code', 
'end' : 'end', 
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伪装你 2024-10-01 13:05:34

我的高度和宽度搞乱了。我用来获取 h 和 w 的函数在任何地方都工作得很好,但在 IE 中除外。

My height and width were messed up. The function I used to get h and w worked everywhere just fine everywhere but in IE.

禾厶谷欠 2024-10-01 13:05:34

我在IE8下也出现这个错误。除了我的原因是我根本没有指定高度/宽度。尽管它仍然正确加载,并采用它转换的文本框的大小,但它仍然抛出“无效参数”异常。

通过将此代码添加到 init 来修复它:(

$('#' + textAreaID).tinymce({

    ...

    height: $('#' + textAreaID).outerHeight(),
    width: $('#' + textAreaID).outerWidth()
});

使用 jQuery 语法)

I also had this error in IE8. Except the cause of mine was that I was not specifying a height/width at all. Even though it was still loading correctly, and adopting the size of the text box that it converted, it still threw an "invalid argument" exception.

Fixed it by adding this code to the init:

$('#' + textAreaID).tinymce({

    ...

    height: $('#' + textAreaID).outerHeight(),
    width: $('#' + textAreaID).outerWidth()
});

(using jQuery syntax)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文