取複選框勾選的值

<!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=utf-8" />
<title>取複選框勾選的值</title>
<script type="text/javascript">
function getCheckedIds(){
  var ids = document.getElementsByName('ids');
  var checkedIds = '';
  for ( var i = 0; i < ids.length; i++) {
   if(ids[i].checked){
    checkedIds += ids[i].value + ',';
   }
  }
  alert(checkedIds);
}
</script>
</head>
<body> <input type="checkbox" name="ids" value="1" /> <input type="checkbox" name="ids" value="2" /> <input type="checkbox" name="ids" value="3" /> <input type="button" onclick="getCheckedIds()"  value="測試"/> </body> </html>
相關文章
相關標籤/搜索