-4

嗨,我是 Web 开发的新手。我需要使用JQuery。即使我成功地尝试了一个 jquery ,但只有在将文件复制到我的在线 ftp 文件夹之后。我完全无法从我的本地文件夹中运行它。请解释一下,我怎样才能测试一些新脚本而无需额外的将文件复制到 ftp 文件夹的练习。提前致谢!

我使用的脚本(感染刚刚从www.w3schools.com复制, 但该脚本仅从 ftp 文件夹运行,我无法从本地文件夹运行它。您可以看到没有任何本地或固定路径可以从一个地方,但不是来自另一个地方。脚本如下:

<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("button").click(function(){
    $("p").hide();
  });
});
</script>
</head>

<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Click me</button>
</body>
</html>

现在是不是可以从我的硬盘驱动器上的文件夹中运行此代码?

4

3 回答 3

0

在你的 head 标签中包含:

<!-- jQuery -->
<script src="http://code.jquery.com/jquery-latest.min.js"></script>

喜欢:

<head>
  <!-- jQuery -->
  <script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
于 2013-03-04T11:47:35.680 回答
-1

包括head标签

<html>
<head>
      <!-- jQuery -->
      <script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
</body>
</html>
于 2013-03-04T11:51:38.820 回答
-1

你可以这样使用。

<head>
     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">/script>
</head>
<body>
<p></P><input type=button value="Click me" id="btn1"/>

  <script>

  $('#btn1').click(function()
  {
      $('p').html("Hello World!");
  });

  </script>
</body>
于 2013-03-04T12:00:53.927 回答