在Smarty模板中添加脚本。

时间:2018-07-09 12:41:43

标签: javascript smarty

我正在模板文件中开发一个php smarty项目:

...
<div class="text-center" id="tableLoading">
        <p><i class="fa fa-spinner fa-spin"></i> {$LANG.loading}</p>
    </div>
</div>

// there I want to include a script:
<script type="text/JavaScript">
    include($_SERVER['DOCUMENT_ROOT'] . '/templates/NeWorld/clientareaproducts_ext/clientareaproducts.js');
</script>

我尝试使用$_SERVER['DOCUMENT_ROOT'] . xxx组合绝对路径。但这似乎行不通。由于脚本是扩展名,因此我无法导入模板的相应php文件中,因此必须在其中包含。

如何实现?

0 个答案:

没有答案