在产品详细页面magento中添加JS代码

时间:2017-05-09 11:55:31

标签: magento magento-1.7 magento-1.9 magento-1.8

在安装我的插件时,我想在产品详细页面源中包含一段javascript代码。如何实现。

2 个答案:

答案 0 :(得分:0)

如果您想添加javascript代码,请在目录

中的view.phtml中实现代码
app\design\frontend\youtheme\youtheme\template\catalog\product\view.phtml

答案 1 :(得分:0)

在模块文件路径中添加以下代码:app / design / frontend / yourtheme / yourtheme / layout / modulename.xml然后将你的js文件添加到skin文件夹中,它将在你的产品视图页面标题中调用

<catalog_product_view>
    <reference name="head">
         <action method="addItem"><type>skin_js</type><name>js/yourjsfile.js</name></action>
    </reference>
<catalog_product_view>