2008年10月28日星期二

利用jquery操作select下拉列表框 - 为了忘却的纪念 $bestmost->save(

其他有关select的取值或赋值方式:
复制多选框,并且设置指定名称为默认值
$(".SoftType").html($("#stsoft").clone());
for(var i=0; i<$(".SoftType select option").length; i++){
if($(".SoftType select")[0].options(i).text== soft){
$(".SoftType select")[0].selectedIndex = i;
}}
获取select被选中项的文本
var item = $(\"select[@name= stsoft] option[@selected]\").text();
select下拉框的第二个元素为当前选中值
$(\'#stsoft\')[0].selectedIndex = 1;
获取value值
$(\'#stsoft\').val();
设置value=1的项目为当前选中项
$(\"#stsoft\").attr(\"value\",“1”);
$(\'#stsoft\').val(“1”);

没有评论: