我有以下代码并试图隐藏XYZ
。为什么不使用此代码隐藏它?
<html>
<head>
<script type="text/javascript">
$(function(){
$('#hide').hide();
});
</script>
</head>
<body>
<div id="hide">
XYZ
</div>
</body>
</html>
感谢。
答案 0 :(得分:3)
您需要包含对jQuery的引用才能使用jQuery函数
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$('#hide').hide();
});
答案 1 :(得分:2)
您正在使用jQuery语法,但您没有添加jQuery本身,这就是原因。
在当前脚本阻止之前将其添加到head标记:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
答案 2 :(得分:2)
您需要在源文件中包含jQuery.js.
答案 3 :(得分:2)
您没有加载jQuery。
尝试从Google加载它:
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js'></script>
在你的剧本之前。
答案 4 :(得分:2)
您忘记包含jQuery库
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.js'></script>