为什么jQuery代码不起作用?

时间:2016-07-28 19:40:00

标签: jquery visual-studio

我正在学习jQuery并使用Visual Studio 2013作为编辑器。这是我的HTML代码

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>

    <script src="jquery-3.1.0.js"></script>
    <script src="jquery-3.1.0.min.js"></script>
</head>
<body>
    <script type="text/javascript">
    $(window).load(function () {
        alert("Window Loaded");
    });

    $(document).ready(function() {
        alert("Document Ready");
    });
    </script>

</body>
</html>

This is my project structure

但是在浏览器中加载页面时,此代码不会提醒我。我在Chrome浏览器中试过了。

1 个答案:

答案 0 :(得分:3)

只包括jquery-3.1.0.js或j query-3.1.0.min.js,您不能同时包含在标题中