Posted in Javascript onJanuary 28, 2010
操作下拉列表
添加选项列表
$(this).get(0).options.add(new Option(text,value));
清空列表
$(this).get(0).options.length=0;
删除指定索引的选项
$(this).get(0).remove(index);
设定需要选中项的值
$(this).get(0).value=value;
获取当前选中选项的文本
$(this).get(0).options[index].text;
批量修改CSS
$(this).css({left:"35px",top:"24px"})
使指定区域内的元素不可使用(变灰)
$(this).find(*).each(function(){$(this).attr("disabled",true)});
jquery 常用操作方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@