在我的项目中包含jQuery SDK

时间:2013-06-29 12:03:32

标签: javascript jquery

我在Mac上使用Sublime Text 2进行开发,我不知道如何在我的项目中包含jQuery SDK。我已经下载了SDK。

2 个答案:

答案 0 :(得分:1)

要包含jQuery或任何其他外部JS资源,您需要使用<script>标记,例如:

<强>的index.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

答案 1 :(得分:1)

http://jquery.com/下载jquery.js并将此行添加到您的html文件中     <script src="path_to_the_file_you_downloaded" type="text/javascript"></script>