手记

关于jquery select设置选中的问题

根据value值设置选中

$(".selector option[value='selectValue']").attr("selected",true)

根据text值设置选中

$(".selector option:contains('xxxxx')").attr("selected","selected");

网上有些说

$(".selector").find("option[text='pxx']").attr("selected",true);

但是我发现不能使用,也不知道是不是因为jquery版本的问题。

后面的attr应该都能使用。

0人推荐
随时随地看视频
慕课网APP