在class/theme.php中的class xos_opal_Theme
其中有function addScript
我們可以在module的php檔案中使用這個function來新增js
測試用法:
$themeTest = new xos_opal_Theme();
$js =<<< eof
console.log('Hi, friends.');
eof;
$themeTest->addScript(null,null,$js,null);
$themeTest->renderMetas('script',false);
-------------
可以輸出php變數的值
範例:
$result = "我是PHP字串";
$themeTest = new xos_opal_Theme();
$js =<<< eof
console.log("$result");
eof;
$themeTest->addScript(null,null,$js,null);
$themeTest->renderMetas('script',false);