为了账号安全,请及时绑定邮箱和手机立即绑定

请教关于日期函数的问题

function window_onload()
{
    var myForm = document.form1;
    var nowDate = new Date();
    myForm.firstDay.options[nowDate.getDate()-1].selected = true;
    myForm.secondDay.options[nowDate.getDate()-1].selected =true;
    myForm.secondMonth.options[nowDate.getMonth()].selected =true;
    myForm.firstMonth.options[nowDate.getMonth()].selected = true;
    myForm.firstYear.options[nowDate.getFullYear()-1970].selected =true;
    myForm.secondYear.options[nowDate.getFullYear()-1970].selected =true;
}
//可以执行,返回firstDay,secondDay.options【】对象的值为当前时间,,
function window_onload()
{
    var myForm = document.form1;
    var nowDate = new Date();
    myForm.firstDay.options[nowDate.getDate()-1].selected = true;
    myForm.firstMonth.options[nowDate.getMonth()].selected = true;
    myForm.firstYear.options[nowDate.getFullYear()-1970].selected =true;
    myForm.secondDay.options[nowDate.getDate()-1].selected =true;
    myForm.secondMonth.options[nowDate.getMonth()].selected =true;    
    myForm.secondYear.options[nowDate.getFullYear()-1970].selected =true;
}

顺序更改后,firstDay 正常返回当前日期,secondDay则无法返回当前日期,为什么???

正在回答

1 回答

给一下你的完整代码看一下,包括html结构

0 回复 有任何疑惑可以回复我~
#1

qq_无心_12 提问者

非常感谢!
2015-12-28 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468044    人
  • 解答问题       21891    个

本课程从如何插入JS代码开始,带您进入网页动态交互世界

进入课程

请教关于日期函数的问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信