jQuery select 全国城市三级联动省市区(项目中修改页面用到了)

jQuery select 全国城市三级联动

在项目中修改页面会用到,之前用$.filter()函数不行,换成$.each()就可以啦

附代码:


$(function () {
    _init_area();
     
    setTimeout(function () {
        changeArea();
    }, 200);
});
function changeArea() { //默认省 var province = $("#areaProvince").val(); //默认市 var city = $("#putArea").val(); //默认区 var area = $("#areaCounty").val(); $('#s_province option').each(function () { if ($(this).val() == province) { $(this).attr('selected', true); } });// $("#s_province option").filter('[value="' + province + '"]').attr('selected', true); $('#s_province').trigger('change'); $('#s_city option').each(function () { if ($(this).val() == city) { $(this).attr('selected', true); } });// $("#s_city option").filter('[value="' + city + '"]').attr('selected', true); $('#s_city').trigger('change'); $('#s_county option').each(function () { if ($(this).val() == area) { $(this).attr('selected', true); } });// $("#s_county option").filter('[value="' + area + '"]').attr('selected', true); }


最后附上js脚本资源下载:

http://download.csdn.net/detail/qq_35624642/9705282

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

QC班长

班长有话说:要是有瓶水喝就好了

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值