select 从后台取来的值如何放到select里面的文本框中?
$(".type option").each(function(){
if($(this).val() == detail.type){
$(this).attr('selected', true);
}
});
感觉网上关于这个功能比较少
.type:是select 里面的class 名 选择option
.each 就是循环一下,option里面,如果这里面有值跟后台取的值,比配上了。
$(this).attr("selected",ture).这是设置文本里面的值。