Jquery设置select控件指定text的值为选中项

来源:互联网 发布:ktv手机点歌软件 编辑:程序博客网 时间:2024/05/22 05:41


北环路
天河路
清华园路
徐寨路
朝凤路
园田路

var street = ‘清华园路’;
(‘#streetid option:contains(’ + street + ‘)’).each(function(){  
  if (
(this).text() == street) {
$(this).attr(‘selected’, true);
}
});

原创粉丝点击