简体   繁体   English

在jQuery中对IE8上的方法或属性访问进行了意外调用

[英]Unexpected call to method or property access on IE8 in jQuery

I have an error on my site: 我的网站上有错误:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)
Timestamp: Fri, 27 Jul 2012 08:54:50 UTC


Message: Unexpected call to method or property access.
Line: 5855
Char: 5
Code: 0
URI: http://garmonia-znakomstva.ru/js/jquery-1.7.2.js

Is this jQuery incompatible with IE8 or some my error? 这个jQuery是否与IE8或我的错误不兼容?

Error occuring while opening http://garmonia-znakomstva.ru/ 打开http://garmonia-znakomstva.ru/时出错

CODE

This is jQuery code fragment: 这是jQuery代码片段:

prepend: function() {
    return this.domManip(arguments, true, function( elem ) {
        if ( this.nodeType === 1 ) {
5855:           this.insertBefore( elem, this.firstChild );
        }
    });
},

An error occurs when the jquery meets <script> tag inside the div#accordion. 当jquery遇到div#accordion中的<script>标记时发生错误。 Try to move the tag <script> out 尝试移动标记<script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 IE8 appendChild“对方法或属性访问的意外调用” - IE8 appendChild “Unexpected call to method or property access” excanvas IE8,对方法或属性访问的意外调用 - excanvas IE8, Unexpected call to method or property access 为什么此jQuery代码会导致IE8错误:“方法或属性访问意外调用” - Why does this jQuery code cause IE8 error: “UNEXPECTED CALL TO METHOD OR PROPERTY ACCESS” jQuery 1.11.1 appendChild错误IE8(意外调用方法或属性访问) - jQuery 1.11.1 appendChild error IE8 (Unexpected call to method or property access) IE中出现奇怪的jQuery错误:对方法或属性访问的意外调用 - Strange jQuery error in IE: Unexpected call to method or property access marionettejs attachhtml ie8-意外调用方法或属性 - marionettejs attachhtml ie8 - unexpected call to method or property JavaScript RunTime错误:appendChild() - 对IE8中的方法或属性的意外调用 - JavaScript RunTime Error : appendChild() - Unexpected call to method or property in IE8 在IE 7中意外调用方法或属性访问 - Unexpected call to method or property access in IE 7 IE7 / 8中意外调用方法或属性 - Unexpected call to method or property access in IE7/8 IE中的jQuery错误:意外调用方法或属性 - jQuery error in IE: Unexpected call to method or property
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM