网站(http://www.114time.com/)上的js文件都下载不了,怎么回事?IE临时文件中也没有,用的啥技术?
如:http://www.114time.com/js/showtime.js,确实存在就是下载不了

解决方案 »

  1.   

    哪里不能下载?直接输入http://www.114time.com/js/showtime.js 不就可以看到了?
      

  2.   

    LZ检查下自己的机器吧,或者清下Cookie啊临时文件啊试试看……
      

  3.   


    怪事,连接就可以,在地址栏上输入http://www.114time.com/js/showtime.js,咋提示不能下载
      

  4.   

    不能下载浏览器怎么执行?
    (function(){
    var week = '日一二三四五六';
    var innerHtml = '{0}:{1}:{2}';
    var dateHtml = "{0}月{1}日  周{2}";
    var timer = 0;
    var beijingTimeZone = 8;

    function format(str, json){
    return str.replace(/{(\d)}/g, function(a, key) {
    return json[key];
    });
    }

    function p(s) {
    return s < 10 ? '0' + s : s;
    }

    window.baidu_time =  function(time){
    initTime = time;
    show(time);
    timer = setInterval(function(){
    time += 1000;
    show(time);
    }, 1000);

    }

    function show(time){
    var timeOffset = ((-1 * (new Date()).getTimezoneOffset()) - (beijingTimeZone * 60)) * 60000;
    var now = new Date(time - timeOffset);
    document.getElementById('time').innerHTML = format(innerHtml, [p(now.getHours()), p(now.getMinutes()), p(now.getSeconds())]);
    setClockTime(time);
    document.getElementById('date').innerHTML = format(dateHtml, [ p((now.getMonth()+1)), p(now.getDate()), week.charAt(now.getDay())]);
    }

    function init(){
    var elm = document.createElement('SCRIPT');
    elm.src = 'http://open.baidu.com/app?module=beijingtime&t=' + new Date().getTime();
    document.getElementsByTagName('HEAD')[0].appendChild(elm);
    setTimeout(function(){init()}, 60000);
    }

    window.baidu_time(bjtime);

    })();
      

  5.   

    Http Status Code是304 Not Modified,不知道是什么意思
      

  6.   

    Return_false提供的连接可以,
    但把地址复制到地址栏上,提示不能下载怎么回事呀,各位帮着试试
      

  7.   

    IE临时文件中也没发现该文件,怎么回事呀,难道是我的浏览器有问题?
    各位把http://www.114time.com/js/showtime.js复制到地址栏,看能下载吗?