7

我的网络应用程序在这里运行:URL 我在 IE 浏览器中使用 jquery 版本 1.7.1.min.js,我在 IE 7 和 8 中收到以下错误。

错误详情:

SCRIPT3: Member not found.

jquery-1.7.0.min.js, line 2 character 30982

e.nodeValue正如您在附图中看到的那样,我还发现它是空的。在此处输入图像描述. 但是,相同的代码在 IE 9 和 10 上运行良好。

在浏览代码时,我发现以下代码不适用于 ie6/7。任何帮助如何摆脱这个错误?

/ IE6/7 do not support getting/setting some attributes with get/setAttribute
if ( !getSetAttribute ) {

    fixSpecified = {
        name: true,
        id: true
    };

    // Use this for any attribute in IE6/7
    // This fixes almost every IE6/7 issue
    nodeHook = jQuery.valHooks.button = {
        get: function( elem, name ) {
            var ret;
            ret = elem.getAttributeNode( name );
            return ret && ( fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified ) ?
                ret.nodeValue :
                undefined;
        },
        set: function( elem, value, name ) {
            // Set the existing or create a new attribute node
            var ret = elem.getAttributeNode( name );
            if ( !ret ) {
                ret = document.createAttribute( name );
                elem.setAttributeNode( ret );
            }
            return ( ret.nodeValue = value + "" );
        }
    };
4

1 回答 1

0

放弃。

不支持 IE 7/8。为什么要支持一个垂死的物种? 谷歌很久以前就决定他们只支持最新的,你为什么要做任何不同的事情?

于 2014-11-14T12:23:24.687 回答