我有這樣的代碼,我需要設置一個唯一的title
:如何將變量插入到變量字符串中?
var tmpImg = '<img src="/admin/icons/cross.png" title="' + title + '" />';
$(this).find("tr td input").each(function(){
title = $(this).attr("value");
$(this).hide().before(tmpImg);
});
我希望發生的,就是每一次迭代each
在<input>
,它將更新tmpImg
字符串title
值。我知道我可以像下面那樣分開img HTML,但我認爲當我需要在後面的腳本中重新使用圖像時,這會變得混亂。
var tmpImg = '<img src="/admin/icons/cross.png" title="';
$(this).find("tr td input").each(function(){
title = $(this).attr("value");
$(this).hide().before(tmpImg + title + '" />');
});
我覺得輕度有趣,你拼寫單詞「變量」兩種不同的方式 - 無論是不正確 - [在問題標題](http://stackoverflow.com/posts/8969771/revisions#revbac494ba-2a4a-4d42-987e-d10db9de3e62):-) –