我有一个关于 JS 的问题。带有 的幻灯片.animate()
,似乎适用于所有浏览器,除了任何版本的 IE。这是一个演示: http: //mamar2.monline.dk/lindvedmarine/business.php
谁能明白这是为什么?
我有一个关于 JS 的问题。带有 的幻灯片.animate()
,似乎适用于所有浏览器,除了任何版本的 IE。这是一个演示: http: //mamar2.monline.dk/lindvedmarine/business.php
谁能明白这是为什么?
您可能会调用console.log
IE 开发人员工具提供的,并且在开发人员工具未运行时不存在。
正如我从源代码中看到的console.log
那样,您的脚本中有语句。如果我没有错,如果开发人员工具关闭console
,则不存在。IE
因此,请尝试注释掉这些语句或使用下面的脚本。
// Avoid `console` errors in browsers that lack a console.
(function() {
var method;
var noop = function noop() {};
var methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeStamp', 'trace', 'warn'
];
var length = methods.length;
var console = (window.console = window.console || {});
while (length--) {
method = methods[length];
// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
}());
从 FF 中查看您的页面源代码。你会看到几条红线,你会发现你没有打开/关闭你的 html。这与您的问题无关,但可能会在功能中增加更多问题。