$("#province option").each(function(){ if($(this).text() === citys[0]){ $(this).attr('selected', 'selected'); } }); $("#province option:contains('广东')").attr('selected', true);
本文共 262 字,大约阅读时间需要 1 分钟。
$("#province option").each(function(){ if($(this).text() === citys[0]){ $(this).attr('selected', 'selected'); } }); $("#province option:contains('广东')").attr('selected', true);
转载于:https://my.oschina.net/hehongbo/blog/1541637