我的问题快把我逼疯了。
我已经声明了这样的 som 变量
var tip01 = "This is my first tip";
var tip02 = "This is my second tip";
根据我的查询字符串中的值,我想写出我的提示。
我的查询字符串:ex ?myQSvalue=01
var myQSvalue = getQueryString('myQSvalue');
var myTip = 'tip' + myQSvalue;
$("#output").html(myTip);
但输出是:tip01
insted of This is my first tip
。
我怎样才能实现这一点并在我声明的变量中输出内容?
谢谢你。