请教关于日期函数的问题

来源:9-1 认识DOM

qq_无心_12

2015-12-27 23:11

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回答

  • 李晓健
    2015-12-28 12:53:33
    已采纳

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

    qq_无心_...

    非常感谢!

    2015-12-28 21:31:13

    共 1 条回复 >

JavaScript进阶篇

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

468060 学习 · 21891 问题

查看课程

相似问题