本文介绍了在jsp页面的javascript中访问表达式语言的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个jsp文件。在该文件中,我有Javascript脚本。
在< script>
标签内,只允许使用javascript但是,表达式语言是如何执行的?
I have a "jsp" file. In that file I have "Javascript" scripting.Within <script>
tags,only javascript is allowed but, how is "Expression Language" executed?
<body>
<script type="text/javascript">
var b=${requestScope.name};
</script>
</body>
推荐答案
已执行。
由于表达式语言在服务器端执行,语句
As "Expression Language" is executed on the server side the statement
${requestScope.name}
在服务器端执行,其值可供客户端的JavaScript使用。现在在客户端,行变为
executed at server side and its value is available to JavaScript at client side. now at the client side the line becomes
var b='corresponding expression language executed value';
这篇关于在jsp页面的javascript中访问表达式语言的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!