当放入ASPX文件时,我无法使用这段非常简单的代码。
<script type="text/javascript">
$(document).ready(function(){
$(".hide").click(function(){
$("p").toggle("slow");
});
});
</script>
In the body:
<p>If you click on the "Hide" button, I will disappear.</p>
<input type="button" value="Hide" class="hide" />
我在jquery,第10338行和$(文件).ready(function(){line上预期的对象中得到语法错误。有人可以提供一些帮助吗?
答案 0 :(得分:0)
您的 jquery文件路径不正确。
如果您愿意,可以这样添加:
<script type="text/javascript" src="~/js/jquery-whateverversion.js"></script>
或
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
添加〜,以便计算根文件夹
的路径