如何在Joomla virtuemart产品详细信息中包含javascript

时间:2011-08-18 09:42:38

标签: joomla joomla-extensions virtuemart joomla-template

我实际上是在http://virtuemart.net/documentation/Developer_Manual/Modifying_the_Layout.html此页面的帮助下自定义产品详细信息页面。我需要包含一些外部和内部JavaScript.But不知道是要添加脚本。请帮助我做一些。

修改产品详细信息页面。我刚刚在以下文件中工作 components / com_virtuemart / themes / default / templates / product_details / flypage.tbl.php

Virtuemart版本 VirtueMart 1.1.9稳定

Joomla版本 Joomla! 1.5.15稳定

提前致谢。

1 个答案:

答案 0 :(得分:0)

根据您在评论中的回答,答案是:

//This line defines what JavaScript file you wish to add, change it as needed.
$myJsFile = JURI::Base() . 'templates/my_template_name/js/myJsFile.js';

//this line fetchs the jdocument object which is needed to add items to the head (amongst other things)
$document =& JFactory::getDocument(); //Drop the & if PHP5

//This line adds the previously setup JS url
$document->addScript($myJsFile);

如果您想添加或像IE条件标签这样的自定义内容,请参阅此处以获取有关如何使用此对象的更多信息:http://docs.joomla.org/Adding_JavaScript_and_CSS_to_the_page