省市区级联JS控件
下载地址http://files.cnblogs.com/bin-pureLife/%E5%B0%8F%E5%9B%BE%E6%A0%87.zip
function update(province,city,county){ $("#s_province option").each(function(){ if($(this).val()==province){ $(this).attr('selected',true) change(1); } }); $("#s_city option").each(function(){ if($(this).val()==city){ $(this).attr('selected',true) change(2); } }); $("#s_county option").each(function(){ if($(this).val()==county){ $(this).attr('selected',true) } }); }
三个参数分别为,你之前保存的 省 市 区。