这是我的要求,我有一个包含日期数据的数组,例如
$.each(dateWiseArr, function(index, currentDate){
myDateArray[currentDate] = "myData";
dateWiseOtherId[currentDate] = "otherId";
});
alert(myDateArray+"::"+dateWiseOtherId);//working fine and showing right data
$("#myBtn").attr("onClick", "myPassingFunction("+myDateArray+", "+dateWiseOtherId+")");
function myPassingFunction(myDateArray, dateWiseOtherId){
alert(myDateArray[0]);//throw undefined
}
现在,当我按下按钮函数调用成功但变量变为字符串时。
如果您需要更多理解,请告诉我。
注意:我的日期