zoukankan      html  css  js  c++  java
  • 触发别的按钮的onclick事件

    <html>
    <head>
    <title>dddd</title><script type="text/javascript">

    function trigbutton(){
           
            var comment = document.getElementById('button2');
            
                if (document.all) {
                // For IE
                comment.click();
                }
                else if (document.createEvent) {
                //FOR DOM2
                var ev = document.createEvent('HTMLEvents');
                ev.initEvent('click', false, true);
                comment.dispatchEvent(ev);
                }

            }


            function trigselect(){
          
            var comment = document.getElementById('button3');
            
             comment.click();
            }

    </script>
    </head>

    <body>
    <select size="1" name="D1" id="select1">
      <option>1</option>
      <option>2</option>
      <option>3</option>
      <option>4</option>
    </select>
    <input type="button" value="button1" onclick="alert('button1');trigbutton();"/>
    <input type="button" value="button2"id="button2" onclick="alert('button2');trigselect();"/>
    <input type="button" value="button3"id="button3" onclick="alert('button3');"/>
    </body>
    </html>

  • 相关阅读:
    Navigator对象关于语言的属性
    对ng-repeat的表格内容添加不同样式:ng-style
    ng-repeat
    ES 6 : 函数的扩展
    二维码下载,区分是 ios 和 android
    gulp配置备份
    [转]移动端web页面使用字体的思考
    移动开发总结
    前端优化:雅虎35条
    input填写银行卡号,每四位空一隔
  • 原文地址:https://www.cnblogs.com/xcwytu/p/2396446.html
Copyright © 2011-2022 走看看