我有一段代碼,經過測試,在IE8中不起作用。我已經運行在IE11和Chrome上,並且運行完美。我調試了IE8中的代碼,它指向「console.log」作爲問題區域。 最有趣的是,當我開始在IE8中調試JS時 - 它會將它踢開,並且這段代碼開始工作。調試,關閉並重新打開文件? - 同樣的故事,直到你進入調試)))IE8中的Console.log
jQuery(function() {
$('.Response input[type=radio]').change(function() {
console.log(this.value)
if (this.value == 'Y' || this.value == 'NA' || this.value == 'NS') {
$(this).closest('.ui-accordion-content').prev().css("background", "#AADDB2");
} else if (this.value == 'N') {
$(this).closest('.ui-accordion-content').prev().css("background", "#FFC5C5");
}
});
});
任何想法將不勝感激年幫助 PS遺憾的是,用戶的一種「必須」使用IE8和升級。 (((。(( 謝謝您提前)))
IE8上的控制檯命令扼流圈,除非開發工具是開放的。 – j08691
http://stackoverflow.com/questions/690251/what-happened-to-console-log-in-ie8?rq=1 – j08691