`j没有为jQuery定义`

Sto*_*oic 1 jquery undefined

我正在使用以下代码的PHP页面,而我收到此错误.有人可以建议什么吗?
当我通过view-source:Chrome中的链接访问它们时,我能够查看JS文件的来源.
这是一个非常小的页面,而此页面的整个内容如下所示:

<html>
 <head>
  <title>Code Library: Localhost Repository</title>
  <script type="text/javascript" href="js/jquery-1.4.4.min.js"></script>
  <script type="text/javascript" href="js/jquery.uniform.min.js"></script>
  <script type="text/javascript"> 
   $(function(){
    $(function(){ $("select, input:checkbox, input:radio, input:file").uniform(); });
   });
  </script> 
  <link rel="stylesheet" href="css/uniform.default.css" type="text/css" media="screen" charset="utf-8" />
 </head>

 <body>
  <form method="post" action="/index.php" class="jqtransform">
   <table>
    <tr>
     <td><label for="title">Code::Title</label></td>
     <td><input type="text" name="title" /></td>
    </tr>
   </table>   
   <input type="hidden" name="CodeSubmitted" value="Y"/>
   <input type="submit" value="Add Code Snippet"/>
  </form>
 </body>
</html>
Run Code Online (Sandbox Code Playgroud)

Pek*_*ica 15

您正在使用href而不是srcscript标签中.