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

前端 未结 5 668
[愿得一人]
[愿得一人] 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:14

    eval() function is used to evaluate script in a string variable. For example :

    var test1;
    eval("test1=" + theArrayOfStrings[i]);
    test1.foo();
    

    But take a lok at this question before use When is JavaScript’s eval() not evil?

提交回复
热议问题