我在收到此错误的同时,将以下代码用于php页面。
有人可以建议什么吗?
通过Chrome中view-source:
中的链接访问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>
最佳答案
您正在使用href
而不是src
标记中的script
。
关于jquery - jQuery的$没有定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4370127/