我想获取一个 li ID 属性的值(这将是一个用户 ID),并将其用作我最终将用作变量名的一部分的字符串的一部分。我将使用这个变量名来创建一个数组。
我了解基础知识,但似乎无法找到正确的 jQuery/javascript 组合来实现这一魔法。
jQuery('#user-list li').click(function() {
var userID = jQuery(this).attr("id");
// i want to add the word array to the end of userID
var theVariableName = userID + "Array";
// I want to use this variable to create an array
var theVariableName = new Array();
// I want to continue to use the name throughout my document
theVariableName.push({startTime: 7, endTime: 10});
alert(theVariableName[0].startTime);
});