Authored by 陶雨

解决资源位内容select无法再safiri被初始化的问题

... ... @@ -155,7 +155,7 @@ components.prototype={
$("select").each(function() {
var _value = $(this).attr("value");
if (_value) {
$("option[value='" + _value + "']", $(this)).attr("selected", true);
$("option[value='" + _value + "']", $(this)).prop("selected", true);
}
});
},
... ...