迴圈方式為select下拉選單新增年份

admin發表於2018-07-09

在網站中有有選擇出生年月的下拉選單,如果人工方式新增的話,工作量會很大。

下面介紹一下如何利用JavaScript動態迴圈新增年份。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript"> 
function gel(id){ 
  return document.getElementById(id); 
} 
window.onload=function(){ 
  var cbbYear=gel("sel"); 
  for(var i=2000;i<2014;i++){ 
    var opt=new Option(i, i); 
    cbbYear.options.add(opt); 
  } 
} 
</script> 
</head> 
<body> 
<select id="sel"> 
</select> 
</body> 
</html>

相關文章