【调度系统】广东民航医疗快线调度系统源代码
hzj
5 小时以前 1503b9d7ed1d71b98bd5715c23d236ef3c019ead
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var href = document.getElementsByTagName("label");
var count = href.length;
if(count>0){
    for(var i=0; i<count;i++){
        var url = href.item(i);
        if(url.hasAttribute("data-url")){
            href.item(i).addEventListener("click",function(){
                location.href = this.getAttribute("data-url");
                this.blur();
            },false);
        }
        
    }
}