欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery控制隐藏显示切换

程序员文章站 2022-07-13 22:06:36
...
<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
  $("div").toggle();
  });
});
</script>
</head>
<body>
<button type="button">切换</button>
<div>切换内容</div>
</body>
</html>

通过toggle()函数自动控制

上一篇: account

下一篇: Anoma中的account