admin管理员组文章数量:1341422
I have some basic JavaScript function:
<script type="text/javascript">
function someTestFunction(param1, param2) {
//do something
}
</script>
and Freemarker code:
<#if something==somethingElse>
// call: someTestFunction(something, 123)
<#else>
// call: someTestFunction(somethingElse, 345)
</#if>
my question is: Is it possible, and if so, how to call someTestFunction() from inside freemarker tags?
I have some basic JavaScript function:
<script type="text/javascript">
function someTestFunction(param1, param2) {
//do something
}
</script>
and Freemarker code:
<#if something==somethingElse>
// call: someTestFunction(something, 123)
<#else>
// call: someTestFunction(somethingElse, 345)
</#if>
my question is: Is it possible, and if so, how to call someTestFunction() from inside freemarker tags?
Share Improve this question asked Jul 4, 2012 at 11:04 SP5RFDSP5RFD 8613 gold badges18 silver badges33 bronze badges1 Answer
Reset to default 8Freemarker is a java templating language, meaning it is executed on the server. javascript is executed on the client (user's browser). You cannot call a javascript function from the java server in this manner.
You could do something like:
<script>
<#if something==somethingElse>
someTestFunction(something, 123);
<#else>
someTestFunction(somethingElse, 345);
</#if>
</script>
which means the javascript wll be executed on the client side depending on what server variable is set.
本文标签: How to call JavaScript function from FreemarkerStack Overflow
版权声明:本文标题:How to call JavaScript function from Freemarker? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743639235a2514427.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论