您需要连接字符串。
document.getElementById(tabName).style.backgroundImage = 'url(buttons/' + imagePrefix + '.png)';
使用它的方式只是创建一个长字符串,而不实际解释imagePrefix。
我什至建议创建单独的字符串:
function ChangeBackgroungImageOfTab(tabName, imagePrefix){ var urlString = 'url(buttons/' + imagePrefix + '.png)'; document.getElementById(tabName).style.backgroundImage = urlString;}
如下面的DavidThomas所提到的,您可以在字符串中使用双引号。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)