$(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时。
请帮帮我。 谢谢
答案 0 :(得分:1)
如果DisplayList(2, fromDate, toDate, selectedvalue) {...}
是一种声明,则不能使用数字作为参数名称2
;