jQuery调用实现点击按钮切换文本框显示和隐藏不行
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="jquery.js"></script>
<script>
$(function(){
$('input').click(function(){
if($('p').is('visible'))
{
$('p').hide();
}
else
{
$('p').show();
}
})
})
</script>
<style>
p{height:200px;width:300px;border:1px solid #C63;}
</style>
</head>
<body>
<input type="button" value="按钮" />
<p>出现隐藏</p>
</body>
</html>
上面的代码实现点击按钮切换文本框显示隐藏怎么不行啊? 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="jquery.js"></script>
<script>
$(function(){
$('input').click(function(){
if($('p').is('visible'))
{
$('p').hide();
}
else
{
$('p').show();
}
})
})
</script>
<style>
p{height:200px;width:300px;border:1px solid #C63;}
</style>
</head>
<body>
<input type="button" value="按钮" />
<p>出现隐藏</p>
</body>
</html>
上面的代码实现点击按钮切换文本框显示隐藏怎么不行啊? 展开
2个回答
展开全部
将if($('p').is('visible'))修改为if($('p').is(':visible')),也就是少了一个冒号。
希望对你有用!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询