jQuery插件实现适用于移动端的地址选择器

前端之家收集整理的这篇文章主要介绍了jQuery插件实现适用于移动端的地址选择器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在工作中需要用到地址选择器,像下面这样的,本想在网上找一个,可是没找到,于是自己写了个jquery插件

直接上代码吧:

(function ($,win,doc) {
var CityPicker = function (el,options) {
this.el = $(el);
this.options = options;
this.provinces = provinces;
this.pro = null;
this.city = null;
this.elType = this.el.is('input');

this.init();
};

var p = CityPicker.prototype;

p.init = function () {
this.initEvent();
this.preventPopKeyboard();

};

p.preventPopKeyboard = function () {
if (this.elType) {
this.el.prop("readonly",true);
}
};

p.initEvent = function () {
this.el.on("focus",function (e) {
var pickerBox = $(".picker-Box");
if (pickerBox[0]) {
pickerBox.show();
} else {
this.create();
}
}.bind(this));
};

p.create = function () {
this.createCityPickerBox();
this.createProList();
this.proClick();
this.createNavBar();
this.navEvent();
};

p.createCityPickerBox = function () {
var proBox = "

";
$("body").append(proBox);
};

p.createProList = function () {
var provinces = this.provinces;
var proBox;
var dl = "";
for (var letterKey in provinces) {
var val = provinces[letterKey];
if (provinces.hasOwnProperty(letterKey)) {
var dt = "

" + letterKey + "
";
var dd = "";
for (var proKey in val) {
if (val.hasOwnProperty(proKey)) {
dd += "<dd data-letter=" + letterKey + ">" + proKey + "";
}
}
dl += "
" + dt + dd + "
";
}
}

proBox = "

" + dl + "
";

$(".picker-Box").append(proBox);
};

p.createCityList = function (letter,pro) {
var cities = this.provinces[letter][pro];
var ul,li = "";
cities.forEach(function (city,i) {
li += "

  • " + city + "
  • ";
    });

    ul = "

      " + li + "
    ";
    $(".picker-Box").find(".city-picker").remove().end().append(ul);

    this.cityClick();
    };

    p.proClick = function () {
    var that = this;
    $(".pro-picker").on("click",function (e) {
    var target = e.target;
    if ($(target).is("dd")) {
    that.pro = $(target).html();
    var letter = $(target).data("letter");
    that.createCityList(letter,that.pro);

    $(this).hide();
    }
    });
    };

    p.cityClick = function () {
    var that = this;
    $(".city-picker").on("click",function (e) {
    var target = e.target;
    if ($(target).is("li")) {
    that.city = $(target).html();
    if (that.elType) {
    that.el.val(that.pro + "-" + that.city);
    } else {
    that.el.html(that.pro + "-" + that.city);
    }

    $(".picker-Box").hide();
    $(".pro-picker").show();
    $(this).hide();
    }
    });
    };

    p.createNavBar = function () {
    var str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    var arr = str.split("");
    var a = "";
    arr.forEach(function (item,i) {
    a += '<a href="#' + item + '">' + item + '';
    });

    var div = '<div class="navbar">' + a + '

    ';

    $(".picker-box").append(div);
    };

    p.navEvent = function () {
    var that = this;
    var navBar = $(".navbar");
    var width = navBar.find("a").width();
    var height = navBar.find("a").height();
    navBar.on("touchstart",function (e) {
    $(this).addClass("active");
    that.createLetterPrompt($(e.target).html());
    });

    navBar.on("touchmove",function (e) {
    e.preventDefault();
    var touch = e.originalEvent.touches[0];
    var pos = {"x": touch.pageX,"y": touch.pageY};
    var x = pos.x,y = pos.y;
    $(this).find("a").each(function (i,item) {
    var offset = $(item).offset();
    var left = offset.left,top = offset.top;
    if (x > left && x < (left + width) && y > top && y < (top + height)) {
    location.href = item.href;
    that.changeLetter($(item).html());
    }
    });
    });

    navBar.on("touchend",function () {
    $(this).removeClass("active");
    $(".prompt").hide();
    })
    };

    p.createLetterPrompt = function (letter) {
    var prompt = $(".prompt");
    if (prompt[0]) {
    prompt.show();
    } else {
    var span = "" + letter + "";
    $(".picker-box").append(span);
    }
    };

    p.changeLetter = function (letter) {
    var prompt = $(".prompt");
    prompt.html(letter);
    };

    $.fn.CityPicker = function (options) {
    return new CityPicker(this,options);
    }
    }(window.jQuery,window,document));

    代码很简单。这边需要提到的一段代码是:

    left && x < (left + width) && y > top && y < (top + height)) { location.href = item.href; that.changeLetter($(item).html()); } }); });

    这段是通过字母导航省份的代码。当手指在字母上滑动时,touchmove事件并不能确定当前的字母是哪个,因为e.target永远是touchstart时的那个字母。所以我不得不通过坐标来判断手指位于哪个字母上,这样就导致一个问题,每次滑动都必须遍历26个字母的坐标,这样效率是非常低的,但是目前我也没有好的办法。

    该插件的使用方法非常简单:

    $(".city").CityPicker();

    demo: 。最好用手机浏览器或者chrome模拟器打开。

    如果有需要的朋友,可以从 下载。

    原文链接:https://www.f2er.com/jquery/50086.html

    猜你在找的jQuery相关文章