search

Home  >  Q&A  >  body text

click事件的用法是什么样的?

橱窗的光橱窗的光2896 days ago1504

reply all(3)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:04:36

    What is the usage of click event? -PHP Chinese website Q&A-What is the usage of click event? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 怪我咯

    怪我咯2016-12-20 11:03:32

    click是鼠标点击事件,用法可以参考下面的例子

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8"> 
    <title>php中文网(php.cn)</title> 
    <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js">
    </script>
    <script>
    $(document).ready(function(){
      $("p").click(function(){
        $(this).hide();
      });
       
    });
    </script>
    </head>
    <body>
    <p>如果你点我,我就会消失。</p>
    <p>点我消失!</p>
    <p>点我也消失!</p>
    </body>
    </html>

    上面的这个例子就是当我们鼠标点击在我们的p标签上面的时候,会触发click事件,这个事件所执行的功能就是将当前鼠标点击的p标签隐藏起来

    reply
    0
  • 阿神

    阿神2016-12-20 10:59:53

    选中某个标签,然后给他绑定click事件,执行相应的程序

    reply
    1
  • Cancelreply