运行结果尺寸: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    $(this).slideToggle();
  });
  $("button").click(function(){
    $("p").unbind();
  });
});
</script>
</head>
<body>
<p>这是一个段落。</p>
<p>这是另一个段落。</p>
<p>单击任何 p 元素使其消失。</p>
<button>删除所有 p 元素的所有事件处理程序</button>
</body>
</html>
×

报个问题: