<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <link rel="stylesheet" href="resource/bootstrap/css/bootstrap.css"/>
    <script src="resource/jQuery/jquery-1.11.3.js"></script>
    <script src="resource/bootstrap/js/bootstrap.js"></script>
    <script>
        $().ready(function(){
            $("p").click(function(){
                $(this).hide();
            });
        })
    </script>
</head>
<body>
    <p>try it</p>
    <p>try it again</p>
    <p>try it the 3th time</p>
</body>
</html>

 

相关文章:

  • 2022-12-23
  • 2021-07-08
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2021-04-30
  • 2021-10-21
  • 2022-12-23
猜你喜欢
  • 2021-07-28
  • 2022-02-22
  • 2022-12-23
  • 2021-08-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案