本文主要是介绍DropDownList的年月日三联动处理方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Dropdownlist的基本操作:
1、 获得当前选中项的序号
document.getElementById(“name”).selectedIndex;
2、 获取当前选中项的值
Document.getElementById(“name”).value;
年月日三联动处理方法:
注册客户端事件:
this.DropDownList1.Attributes.Add("onchange","load()");
this.DropDownList2.Attributes.Add("onchange","load()");
function load(){
var drp3 = document.getElementById("DropDownList3");
for (i = drp3.length; i >= 0; i--){
drp3.options.remove(i);
}
var year=document.getElementById ("DropDownList1").value;
var month=document.getElementById("DropDownList2").value;
var day = new Date(year,month,0);
var days =day.getDate();
for(var i=1;i<=days;i++)
{
var newOption = document.createElement("OPTION");
newOption.text = i;
newOption.value = i;
drp3.options.add(newOption);
}
}
这篇关于DropDownList的年月日三联动处理方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!