我在 Mac 上使用 Sublime Text 2 进行开发,但我不确定如何在我的项目中包含 jQuery SDK。我已经下载了 SDK。
问问题
82 次
2 回答
1
要包含 jQuery 或任何其他外部 JS 资源,您需要使用<script>
标签,例如:
索引.html:
<html>
<head>
<title>My first jQuery page</title>
<!--script src="/js/jquery.js" type="text/javascript"></script-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#test").html("It works!");
});
</script>
</head>
<body>
<div id='test'></div>
</body>
</html>
注释掉的部分用于本地存储的 jquery.js
于 2013-06-29T12:06:58.563 回答
1
从http://jquery.com/下载 jquery.js并将这一行添加到您的 html 文件中
<script src="path_to_the_file_you_downloaded" type="text/javascript"></script>
于 2013-06-29T12:15:42.593 回答