我试图通过head.phtml文件中的javascript获取Magento BaseUrl,然后在jquery.hello-lightbox.min文件中使用它,我需要baseUrl来获取一些图像.
这是我在head.phtml文件中的内容:
getBaseUrl() ; ?>
然后在/js/jquery.hello-lightbox.min我有:
(function($){ function getBaseUrl(baseurl) { var domain = baseurl } var urrl = 'http://'+domain+'/skin/frontend/default/customtheme/images/lightbox/'; $.fn.lightBox=function(settings)settings=jQuery.extend({overlayBgColor:'#000',overlayOpacity:0.8,fixedNavigation:false,imageLoading: urrl+'lightbox-ico-loading.gif',imageBtnPrev:urrl+'lightbox-btn-prev.gif', . . . . . . . . . .
但这不起作用.事实上,似乎我甚至无法将head变量$ baseUrl传递给head.phtml中的var baseUrl
你有什么想法?