我的网络应用程序在这里运行: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 + "" );
}
};