2

您好,我在与 ie 的兼容性问题背后发疯了。该问题仅出现在 Internet Explorer(我有版本 10)上,我对 firefox 没有任何问题。我正在尝试打开一个滑动表单(不是我创建的,特别是: 一个链接 ,但是当我去运行代码时(仅在 Internet Explorer 上)我得到以下异常。你知道告诉我到期时间吗?

// 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.value !== "" : ret.specified ) ?
ret.value :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.value = value + "" ); --> exception in jquery-1.8.2.js cannot find a member
}
};

我忘记了,我正在使用带有模板mvc4的vc2012。

坦克

4

1 回答 1

1

当尝试使用不同的浏览器模式在 IE 10 中运行您的应用程序时,通常会出现此问题。

要解决该问题,F12请检查浏览器模式和文档模式。可能其中之一是IE 8或以下。将“浏览器模式”更改为“ IE10 ”,将“文档模式”更改为“标准”。

于 2013-10-16T07:17:32.630 回答