如何将变量用作JavaScript路径的一部分

时间:2012-09-18 12:21:50

标签: javascript

我有以下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 +”的值不正确。

有人可以帮忙吗? :)

非常感谢

1 个答案:

答案 0 :(得分:6)

backgroundImage: 'url(' + binaryContextRoot + '/furniture/images...'