您的位置:首页 > Web前端 > JQuery

jquery常用操作

2010-01-29 23:27 274 查看
操作下拉列表

添加选项列表

$(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);

//遍历select option

$("#seltype>option").length;//长度

//获取select 的长度

return jQuery(this).get(0).options.length;

$(this).get(0).remove(i);删除

$("#seltype option[text='3']").remove();

$("#seltype option:last").remove();//删除最后一项

//将选中的值追加到另一个select

$("#seltype option:selected").appendTo("#selcategory");
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: