zoukankan      html  css  js  c++  java
  • 触发事件trigger

    触发事件,在本例中,文档加载好之后,就触发dblclick双击事件,而不是通过去手动双击。

    <script src="http://how2j.cn/study/jquery.min.js"></script>
       
    <script>
      $(function(){
          $("#b").on("click",function(){
              $("#message").html("单击按钮");
          });
          $("#b").on("dblclick",function(){
              $("#message").html("双击按钮");
          });
         $("#b").trigger("dblclick");
      });
    </script>
        
    <div id="message"></div>
      
    <button id="b">测试单击和双击</button>

    点击按钮后触发选中事件

    <html>
    <head>
    <script type="text/javascript" src="/jquery/jquery.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
      $("input").select(function(){
        $("input").after("文本被选中!");
      });
      $("button").click(function(){
        $("input").trigger("select");
      });
    });
    </script>
    </head>
    <body>
    <input type="text" name="FirstName" value="Hello World" />
    <br />
    <button>激活 input 域的 select 事件</button>
    </body>
    </html>
  • 相关阅读:
    撕衣服
    寒假作业1编程总结。
    C Traps and Pitfallss
    《彻底搞定C指针》文档整理
    C语言中内存分配 (转)
    ASCII
    ipad
    tour
    Diet
    第7章 输入与输出
  • 原文地址:https://www.cnblogs.com/thiaoqueen/p/7606457.html
Copyright © 2011-2022 走看看