Loving Coding & Visual Design

Jquery对Select的操作说明

最近要用到Jquery对Select的操作,总结一下,以备参考:

  • 获取Select长度: $("#select option").length、所选长度:$("#select option:selected").length or size()

  • 取得序号
    $("#select option").index($("#select option:selected"))

  • 获取Option显示的文字:$("#select option:eq("+i+")").text() - i是option的序号

  • 获取Option的value:$("#select option:eq("+i+")").val() 或者attr("value")

  • 清除所有Option:$("#select").html("");

  • 删除Option
    $("#select option:eq("+i+")").replaceWith(""); - i是option的序号
    $("#select option:eq("+i+")").remove();

  • 改变选择的Option
    $('#select option:selected').removeAttr('selected');
    $('#select option[value='+i+']').attr('selected','selected');

  • 增加Option
    $("").appendTo("#select");

  • 通过value选定Option

  • $("#select").val("zhaiduo").attr("selected", "selected");



下一页


最 近 文 章

  1. 压缩网页 - Thu, 15 Jul 2010 05:05:09 +0000
  2. Ucenter的外链漏洞? - Mon, 05 Jul 2010 06:14:47 +0000
  3. 哈哈,发现一个不用翻墙就能访问Twitter的办法 - Sat, 03 Jul 2010 17:35:18 +0000
  4. 如何做个专业的SEO从业人员 - Sat, 03 Jul 2010 10:22:44 +0000
  5. 电脑No Signal故障 - Sat, 03 Jul 2010 08:44:09 +0000
  6. 关注Google的两个现象 - Thu, 01 Jul 2010 16:20:26 +0000
  7. 点石论坛与云存储 - Tue, 29 Jun 2010 15:18:32 +0000
  8. 我被空间扭了一下腰 - Tue, 29 Jun 2010 10:50:15 +0000
  9. 关于从香港能带几罐奶粉入关 - Mon, 28 Jun 2010 17:15:56 +0000
  10. 关于白帽子SEO咨询服务 - Fri, 25 Jun 2010 17:28:23 +0000