How to convert a string value to a variable in javascript?

前端 未结 5 621
[愿得一人]
[愿得一人] 2021-01-27 09:46
var test1;
$(document).ready(function () {
    test1 = $(\"#test1ID\").jQueryPlugin();
});

var test2;
$(document).ready(function () {
    test2 = $(\"#test2ID\").jQuery         


        
5条回答
  •  一向
    一向 (楼主)
    2021-01-27 10:16

    var test = [], n = 5;
    $(document).ready(function () {
        for(var i=0; i < n; i++)
            test.push($("#test"+i+"ID").jQueryPlugin());
    });
    
    // the values in test won't be accessible before the document is loaded.
    

提交回复
热议问题