我有这个脚本:

function slideSwitch() {
    var ae = jQuery('#featured-right a.active');
    if ( ae.length == 0 ) {
        ae = jQuery('#featured-right a:first');
        var i = jQuery('#featured-right a').index(ae);
        var bae = jQuery('#featured-left a.fb-'+i);
        bae.show();
    }

    var ne =  ae.next().length ? ae.next() : jQuery('#featured-right a:first');
}

$(document).ready(function(){
    var ae = jQuery('#featured-right a.active');
    if ( ae.length == 0 ) {
        ae = jQuery('#featured-right a:first');
        ae.addClass('active');
        var i = jQuery('#featured-right a').index(ae);
        jQuery('#featured-left a.fb-'+i).show();
        jQuery('#featured-right a:not(.active) span.key').hide();
    }
    setInterval("slideSwitch()", 1000);
});

在IE以外的任何浏览器上都可以正常工作在IE上,IU获取
SCRIPT1014: Invalid character featured.js, line 1 character 1

这是怎么了

最佳答案

似乎IE不喜欢我没有HTTP服务器即可访问页面的事实:)
我正在访问c:\www\my-file。当访问http://localhost/my-file ..时效果很好。

关于javascript - SCRIPT1014 : Invalid character,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6261256/

10-09 06:12