如何評估腳本中的字符串?如何評估變量名中的字符串
例如
我想寫這段代碼。
$('#ul23').prepend(item);
但我只有在可變數目如
var x = 23;
$('#ul{x}').prepend(item); // how can I make it??I know only the php way...
如何評估腳本中的字符串?如何評估變量名中的字符串
例如
我想寫這段代碼。
$('#ul23').prepend(item);
但我只有在可變數目如
var x = 23;
$('#ul{x}').prepend(item); // how can I make it??I know only the php way...
就在:
$("#ul" + x).prepend(item);
邊注:這種語法CoffeeScript存在。在CoffeeScript中,您可以編寫"abc#{x}def"
,它將變爲"abc23def"
。儘管在JavaScript中它實際上會被翻譯爲"abc" + (x) + "def"
。
嗯爲什麼不只是連接?就像'#ul'+ x – Prasanth