将JavaScript移动到外部文件,不起作用

时间:2014-03-06 22:10:20

标签: javascript external

好吧,我是java脚本的新手,不知道他们有什么用,但我在这里有这个代码:

$(document).ready(
    function(){
        $("#open").click(function () {
            $("#content").slideToggle("slow");
        });
    });


$(function() {

        $("#slideshow > div:gt(0)").hide();

        setInterval(function() { 
          $('#slideshow > div:first')
            .fadeOut(1000)
            .next()
            .fadeIn(1000)
            .end()
            .appendTo('#slideshow');
        },  8000);

    });

     $(document).ready(function(){
   if($("#copy").length == 0) {
       window.location.href = "http://landon.pro/copyright.htm;
   }
});

作为带有标签的内部代码,我想将它们移动到外部文件,一旦我完成它就搞砸了。 如果我删除了底部代码:

     $(document).ready(function(){
   if($("#copy").length == 0) {
       window.location.href = "http://landon.pro/copyright.htm;
   }
});

它通过外部文件工作正常,你能告诉我我做错了什么吗?以及如何解决它。

感谢。

0 个答案:

没有答案