将 javascript 文件添加到“空白”文件中magento 中的模板

发布于 2024-11-17 02:09:00 字数 196 浏览 0 评论 0原文

我正在使用 Magento 1.5 (CE),并且我正在慢慢地了解它(这个软件有多令人困惑?)。

我想向我的所有页面添加一个 js 文件,但我不确定需要编辑什么。我创建了一个名为 app.js 的文件,位于 /skin/frontend/default/blank/js 中,如何将此文件添加到我的所有模板中?

I'm using Magento 1.5 (CE) and I'm slowly getting my head around it (how confusing is this piece of software?).

I want to add a js file to all my pages, but I'm not sure what i need to edit. I have created a file called app.js located in /skin/frontend/default/blank/js how do i add this file to all my templates?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧夏天 2024-11-24 02:09:00

在主题的布局目录中创建一个文件 local.xml,并添加以下块:

<default>
    <reference name="head">
        <action method="addJs">     
            <script>app.js</script>                         
        </action> 
    </reference>
</default>

另一个常见的相关请求是允许有条件地关闭此 JS。 Magento 也支持这一点:

<default>
    <reference name="head">
        <action method="addJs" ifconfig="yourmodule/someconfig/boolfield">      
            <script>app.js</script>                         
        </action> 
    </reference>
</default>

希望有帮助!

谢谢,

Create a file local.xml in your theme's layout directory, and add the following block:

<default>
    <reference name="head">
        <action method="addJs">     
            <script>app.js</script>                         
        </action> 
    </reference>
</default>

Another common, related request is to allow this JS to be turned off conditionally. Magento supports this as well:

<default>
    <reference name="head">
        <action method="addJs" ifconfig="yourmodule/someconfig/boolfield">      
            <script>app.js</script>                         
        </action> 
    </reference>
</default>

Hope that helps!

Thanks,
Joe

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文