错误写法(但是网上都是这样写,无语):
$("#s_province").find("option[text='天津市']").attr("selected","selected");
正确的写法:
$("#s_province option:contains('天津市')").attr("selected", true);
版权声明:除特别声明外,本站所有文章皆是本站原创,转载请以超链接形式注明出处!
错误写法(但是网上都是这样写,无语):
$("#s_province").find("option[text='天津市']").attr("selected","selected");
正确的写法:
$("#s_province option:contains('天津市')").attr("selected", true);