为了账号安全,请及时绑定邮箱和手机立即绑定

点击按钮,内容显示和隐藏

点击按钮,内容隐藏,再点击一下,然后内容又开始显示了,这种效果怎么做?

正在回答

6 回答

<!DOCTYPE html>
<html>
    <head>
        <title>element选择器</title>
        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
    </head>
    
    <body>
        <p>我是内容</p>
        <button id="btntest">点我</button>
        <script type="text/javascript">
            $("#btntest").click(function(){
                $("p").toggle();    
            })
        </script>
    </body>
</html>


0 回复 有任何疑惑可以回复我~
#1

慕婉清5962438 提问者

非常感谢!
2015-12-15 回复 有任何疑惑可以回复我~

<script type="text/javascript">

            var flag = $('#test').attr('flag',1);

            function sayHello(){

                if($('#test').attr('flag') == 1){

                    $("#test").show();

                    $('#test').attr('flag',2);

                }else{

                    $("#test").hide();

                    $('#test').attr('flag',1);

                }

            }

        </script>


0 回复 有任何疑惑可以回复我~

用jq 的toggle 属性就可以实现

0 回复 有任何疑惑可以回复我~
$('button').click(function () {
            $('div').toggle();
        });


0 回复 有任何疑惑可以回复我~

用show()和 hide()

0 回复 有任何疑惑可以回复我~

$(document).ready(function(){
   $("button").click(function(){
       $("p").toggle();
   });


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

点击按钮,内容显示和隐藏

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信