function get_province(){
$.
ajax({
type:
'post',
url:
'',
success:
function(res){
for(
var i=
0;i<res.
length;i++){
var itm=
$(
'<option value='+res[i].province_id+
'>'+res[i].
province+
'</option>')
;
var itm=
$(
'<option value='+res[i].province_id+
'>'+res[i].
province+
'</option>')
;
$(
'#op_peovince_add').
append(itm)
;
$(
'#op_peovince').
append(itm)
;
}
}
})
;
}
如上 $(
'#op_peovince_add')
.append(itm); 没有追加进去
$(
'#op_peovince').
append(itm)
; 可以追加进去 不知为什么 只有后面的才能追加进去,后来修改如下就可以了
function get_province(){
$.
ajax({
type:
'post',
url:
'',
success:
function(res){
for(
var i=
0;i<res.
length;i++){
var itm=
$(
'<option value='+res[i].province_id+
'>'+res[i].
province+
'</option>')
;
var itm_add=
$(
'<option value='+res[i].province_id+
'>'+res[i].
province+
'</option>')
;
$(
'#op_peovince_add').
append(itm_add)
;
$(
'#op_peovince').
append(itm)
;
}
}
})
;
}
转载请注明原文地址: https://www.6miu.com/read-5829.html