2

你好,我在這個與ie兼容性問題背後瘋了。 該問題只發生在Internet Explorer(我有版本10),我沒有問題與Firefox。 我試圖打開一個滑動窗體(不是由我創建的,具體來說是: a link 但是當我去運行代碼(只在Internet Explorer上)時,我得到以下異常: 你知道告訴我什麼是到期的?與IE瀏覽器的瀏覽器崩潰jquery-1.8.2.js

// 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 
} 
}; 

我忘了,我用vc2012與模板mvc4。

坦克

回答

1

這個問題嘗試使用不同的瀏覽器模式來運行你的應用程序在IE 10時通常出現。

要解決該問題,請按F12並檢查瀏覽器模式和文檔模式。可能其中之一是IE 8或更低。將「瀏覽器模式」更改爲「IE10」和「文檔模式」更改爲「標準」。

+0

我有文檔模式IE7謝謝 – Massimo