我有以下JS代码:
applyBefore: {
backgroundImage: 'url(/myPath/furniture/images/careers/birds/pigeon_flap_medium.gif?' + Math.random() + ')',
contentFlyOut: {
direction: 'top',
delay: 0.5,
node: '#our-history-content'
}
}
...可以正常工作,但是,我需要'/ myPath'的值等于名为'binaryContextRoot'的变量的值,因为此代码将在不同服务器上运行,其中'binaryContextRoot'的值将在服务器之间不同。
我正在使用正确的语法来在'url'路径中获取'binaryContextRoot'。
我试过了:
backgroundImage: 'url("+binaryContextRoot+"/furniture/images...
其中“ binaryContextRoute”为“ / myPath”,但未成功。无法识别/找到该路径,因此“ + binaryContextRoot +”的值不正确。
有人可以帮忙吗? :)
非常感谢
最佳答案
backgroundImage: 'url(' + binaryContextRoot + '/furniture/images...'
关于javascript - 如何将变量用作JavaScript路径的一部分,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12476933/