有人可以告诉我这个{traveler.iFare}是什么变量吗?据我所知这不是PHP之一,在我发现它的项目中没有使用模板引擎。
<td class="t-r">
<span class="no-br p-l5">
<strong>
{traveler.iFare}
{traveler.sCurrency}
</strong>
</span>
</td>
我想使用“ iFare”作为参数调用JavaScript函数,但无法理解
<script>
document.write(window.functions.function(param));
</script>
最佳答案
那就是结构化的代码模板。
阅读This
它应该使您了解如何在HTML中使用它
关于php - HTML:花括号中的此变量是什么?我没看过,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17648285/