手机端选择收货地址html写法,jQuery仿手机京东商城收货地址城市选择代码
js代碼
/**
* 默認(rèn)調(diào)用
*/
!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);
});
}();
/**
* 設(shè)置默認(rèn)值
*/
!function () {
var $target = $('#J_Address2');
$target.citySelect({
provance: '新疆',
city: '烏魯木齊市',
area: '天山區(qū)'
});
$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);
});
}();
總結(jié)
以上是生活随笔為你收集整理的手机端选择收货地址html写法,jQuery仿手机京东商城收货地址城市选择代码的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【ROS入门21讲】Client客户端的
- 下一篇: v-if报undefined