• JS事件委托中同一个标签执行不同操作


    JS事件委托中同一个标签执行不同操作,根据标签的选择器选择

    <!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Document</title>
        </head>
        <body>
            <div id="box">
                <input type="button" class="add" value="添加" />
                <input type="button" class="remove" value="删除" />
                <input type="button" class="move" value="移动" />
                <input type="button" class="select" value="选择" />
            </div>
        </body>
        <script>
            window.onload = function(){
                var oBox = document.getElementById("box");
                oBox.onclick = function (ev) {
                    var ev = ev || window.event;
                    var target = ev.target || ev.srcElement;
                    if(target.nodeName.toLocaleLowerCase() == 'input'){
                        switch(target.className){
    
                            case 'add' :
                                alert('添加');
                                
                                break;
                            case 'remove' :
                                alert('删除');
                                break;
                            case 'move' :
                                alert('移动');
                                break;
                            case 'select' :
                                alert('选择');
                                break;
                        }
                    }
                }
                
            }
        </script>
        </html>
    请用今天的努力,让明天没有遗憾。
  • 相关阅读:
    MYSQL导入,导出命令。
    MySQL修改,表结构大幅修改
    Ajax
    js和jQuery的日常
    freemarker 分页取值
    Timer定时任务
    汉字相似度比较
    读取Properties键值对
    Python+requests+unittest+excel实现接口自动化测试框架
    Android App 压力测试方法(Monkey)
  • 原文地址:https://www.cnblogs.com/cupid10/p/15617749.html
Copyright © 2020-2023  润新知