DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js multiple全選與取消全選實現代碼
js multiple全選與取消全選實現代碼
編輯:關於JavaScript     
復制代碼 代碼如下:
$("select").change(function(){
    var n = $(this).children().length;
    var obj;
    var i = 1;
       $(this).children().each(function(){
     if(i == n)
     {
      alert($(this).text());
     }
     i++;
    });
   });

綜合以上二法,本人輕易得出了自己想要的效果,如下:
復制代碼 代碼如下:
function selectall()
{
 $("select").children().each(function(){$(this).attr("selected","selected")})
}

分別用到了 children()和$(this).attr("selected","selected")
一個js用法
復制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script type="text/javascript">
<!--
function selectAll()
{
 var opts=document.getElementById("CourseList");
 for(var i=0;i<opts.length;i++)
 {
  opts[i].selected=true;
 }
}
//-->
</script>
</head>
<body>
<select id="CourseList" name="CourseList" multiple="multiple" size="20" style="width:230px;">
<option value="003" >(003) 消費者行為與銷售心理</option>
<option value="004" >(004) 產品策劃與市場推廣</option>
<option value="005" >(005) 品牌定位與廣告原理</option>
</select>
<input type="button" onclick="selectAll()" value="全選">
</form>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved