我正在学习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>
但是在浏览器中加载页面时,此代码不会提醒我。我在Chrome浏览器中试过了。
答案 0 :(得分:3)
只包括jquery-3.1.0.js
或j query-3.1.0.min.js
,您不能同时包含在标题中