致命的エラー: Smarty エラー: 構文エラー: 認識されないタグ
ヘルプ、テンプレート ファイル Login.tpl、
<script><br />function create_code(){<br /> ドキュメント内のコードは次のとおりです。 getElementByIdx_x("code ").src = 'create_code.php?'+Math.random()*10000;<br />}<br /></script>
がエラーを報告し続ける: 「致命的なエラー」 : Smarty エラー: [Login.tpl 行 93]: 構文エラー: 認識されないタグ: document.getElementByIdx_x("code").src = 'create_code.php?'+Math.random()*10000 (Smarty_Compiler.class. php、446 行目) I:masterPHPvtigercrmSmartylibsSmarty.class.php の 1095 行目
”
ご指導ください。 ! !
-----解決策---------
Smarty の tpl に JavaScript またはスタイルを直接記述するには、リテラル タグでラップします
例:HTML コード
{リテラル}
<スクリプト>
関数 create_code(){
document.getElementByIdx_x("code").src = 'create_code.php?'+Math.random()*10000;
}
スクリプト>
{/リテラル}