jQuery   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了javascript – 动态jQuery变量名大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想获取li ID属性的值(它将一个userID),并将其用作字符串的一部分,我最终将其用作变量名称的一部分.我将使用此变量名来创建一个数组.

我理解基础知识,但似乎无法找到正确的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);

});

解决方法

使用Object来保存各种用户数组:

window.userData = {};

$(...).click(function() {
    // ...
    window.userData[userID] = [];
    window.userData[userID].push({startTime:7,endTime:10});

    alert(window.userData[userID][0].startTimE);
}

您可能不希望将userData对象存储在全局命名空间中;为了防止意外的名称冲突,您至少应该将它放在您自己的命名空间中.

大佬总结

以上是大佬教程为你收集整理的javascript – 动态jQuery变量名全部内容,希望文章能够帮你解决javascript – 动态jQuery变量名所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。