JQuery没有解雇。 Windows,本地主机

时间:2016-05-29 16:52:29

标签: javascript jquery html

我希望能够在我的系列障碍中找到功能性答案。我尝试使用<script type="text/javascript" src="./indexjs.js"></script>将我的indexjs.js链接到我的index.html ---但无济于事。我也尝试过内联编辑:

    link type="text/css" rel="stylesheet" href="./indexcss.css"/    
    script type="text/javascript"
    $(document).ready(function(){
$('div').mouseenter(function(){
    $(this).fadeTo('fast',0.5);
    });
$('div').mouseleave(function(){
    $(this).fadeTo('slow',1.0);
    });
});

/脚本

也无济于事。随着sidenotes完整,我已经尝试了几个JQuery安装和插件,但收到错误代码,最终确定类似于:Windows Script Host

        Script: C:\Users\....\Desktop\public_html\indexjs.js
        Line: 1
        Char: 1
        Error:'document' is undefined
        Code:800A1391
        Source: Microsoft JScript runtime error

我通过src使用了googleajax引用;以及将jquery-1.12.4保存到同一个public_html文件夹中。

1 个答案:

答案 0 :(得分:0)

似乎问题出在link&amp; script代码

注意<&amp; >

HTML LINK TAG

<link rel="stylesheet" type="text/css" href="href="./indexcss.css">

Script Tag

 <script type="text/javascript">
    $(document).ready(function(){
     //Rest of code
});
</script>