jQuery简单实现隐藏以及显示特效

简单的 隐藏以及显示的代码如下:

复制代码 代码如下:


<!DOCTYPE html>
<html>
<head>
<script src="https://www.jb51.net/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#hide").click(function(){
  $("p").hide();
  });
  $("#show").click(function(){
  $("p").show();
  });
});
</script>
</head>
<body>
<p>如果点击“隐藏”按钮,我就会消失。</p>
<button type="button">隐藏</button>
<button type="button">显示</button>
</body>
</html>

效果很不错,代码也很简单,希望大家能够喜欢。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgfjzp.html