将日期传递给javascript函数

时间:2015-01-03 06:54:17

标签: javascript

$(document).ready(function() {
    //calling procedure which displays list of items by default.
    DisplayList(2, '2', '2', 0);
});

DisplayList(2, fromDate, toDate, selectedvalue) {
//parameter 2 is passed for procedure
}

function Functioncalling {
    // fromDate and toDate values from asp textbox
    DisplayList(2, fromDate, toDate, selectedvalue);
}

fromdate和todates有'年'价值。日期和月份值的损失以及未选择的不同年份。当调用函数的DisplayList时。

请帮帮我。 谢谢

1 个答案:

答案 0 :(得分:1)

如果DisplayList(2, fromDate, toDate, selectedvalue) {...}是一种声明,则不能使用数字作为参数名称2;