mui绑定事件方法,类似于jquery的onclick事件写法

//选择要监听的html元素
var selector = ["a", "span", "input", "select", "button", "p", "div"];
for (var i = 0; i < selector.length; i++) {

    mui("body").on('tap', selector[i], function () {
        //console.log(this.href)
        var info = Com.GetEvent(this);
        if (info.type == 0) {
            info = Com.GetEvent(this.parentNode);//监听它的父级节点的绑定事件
        }
        if (info.type == 1) window.location.href = info.val;
        else if (info.type == 2) {
            try {
                eval(info.val);
            } catch(err){ }
        };
        event.stopPropagation();
    });

}


var Com= {

    //获取mui的事件
    GetEvent: function (e) {
        var fstrr = e.attributes.onclick;
        var info = { type: 0, val: "" };
        if (e.href != "" && e.href && e.href.indexOf("javascript:") == -1) {
            //window.location.href = e.href;
            info.val = e.href; info.type = 1;
        }
        else if (fstrr != undefined && fstrr != "" && e.attributes.onclick.value != "") {
            try {
                info.val = e.attributes.onclick.value; info.type = 2;
            } catch(err){ }
        }
        return info;
    },

   
}

通过注册事件进行绑定

发布了4 篇原创文章 · 获赞 1 · 访问量 113

猜你喜欢

转载自blog.csdn.net/deriva/article/details/104951578