【实例简介】
【实例截图】
【核心代码】
jQuery手机端收货地址选择代码 - 站长素材/**
* 默认调用
*/
!function () {
var $target = $('#J_Address');
$target.citySelect();
$target.on('click', function (event) {
event.stopPropagation();
$target.citySelect('open');
});
$target.on('done.ydui.cityselect', function (ret) {
$(this).val(ret.provance ' ' ret.city ' ' ret.area);
});
}();
/**
* 设置默认值
*/
!function () {
var $target = $('#J_Address2');
$target.citySelect({
provance: '新疆',
city: '乌鲁木齐市',
area: '天山区'
});
$target.on('click', function (event) {
event.stopPropagation();
$target.citySelect('open');
});
$target.on('done.ydui.cityselect', function (ret) {
$(this).val(ret.provance ' ' ret.city ' ' ret.area);
});
}();