显示/隐藏 div jquery
我在以下代码
<input type="button" id="test" name="test" onclick="test();" value="Test"/>
function test(){
$('#divUser').hide('fast');
$('#divAddress').hide('fast');
$('#divDetails').show();
}
或
$('#test').click(function () {
$('#Div3').show();
$('#Div1').hide('fast');
$('#Div2').hide('fast');
return false;
});
jsFiddle 上不断出现错误: http://jsfiddle.net/mohamad/rFhM6/
已解决: 我替换了这个
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
:
<script src="/jscripts/jquery-1.2.6.pack.js" type="text/javascript"></script>
I am keeping having errors from the below code:
<input type="button" id="test" name="test" onclick="test();" value="Test"/>
function test(){
$('#divUser').hide('fast');
$('#divAddress').hide('fast');
$('#divDetails').show();
}
or
$('#test').click(function () {
$('#Div3').show();
$('#Div1').hide('fast');
$('#Div2').hide('fast');
return false;
});
on jsFiddle:
http://jsfiddle.net/mohamad/rFhM6/
it is solved:
i replaced this:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
with
<script src="/jscripts/jquery-1.2.6.pack.js" type="text/javascript"></script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码似乎是正确的,只是您的 JavaScript 函数未包含在
标记中(如 ILMV 在您的评论中指出的那样):
Your code seems correct, except that your JavaScript function is not wrapped in a
<script>
tag (as pointed by ILMV in your comment):