关于Select选中问题
jquery根据text选中option的问题:
网上找了好多,但发现因为jquery版本问题,很多并不能用。
最后成功了,写法如下:
$('#shop option:contains(' + value + ')').each(function(){
if ($(this).text() == value ) {
$(this).attr('selected', 'selected');
return false;
}
return tru
});
-------------------------------------------------------------------------------------
javascript获取select的value及text:
var obj=document.getElementById("shop");
拿到选中项的索引:var index=obj.selectedIndex ; // selectedIndex代表你所选中项的index
拿到选中项options的value: obj.options[index].value;
拿到选中项options的text: obj.options[index].text;