如何在javascript中获取jsp:useBean值而不使用隐藏字段?

时间:2022-08-25 21:44:33

Here is my jsp snippet

这是我的jsp片段

  <jsp:useBean id="beamManupulate" class="com.tfl.beam.BeamManipulator"     scope="session" />
<jsp:setProperty name="pcBean" property="pageno" value="<%= pageNumber%>"/>

How can i get the value of pageno in javascript code ?

如何在javascript代码中获取pageno的值?

Some of the solutions here say to use hidden field. But i dont want to use them.

这里的一些解决方案说使用隐藏字段。但我不想使用它们。

Any other solutions ?

还有其他方法吗?

1 个解决方案

#1


0  

See, initially you are getting the value of pageno from <%= pageNumber%>.

请注意,最初您从<%= pageNumber%>获取pageno的值。

So, you can directly assign that variable's value in script variable like below:

因此,您可以直接在脚本变量中分配该变量的值,如下所示:

var pageno = '<%= pageNumber%>';

#1


0  

See, initially you are getting the value of pageno from <%= pageNumber%>.

请注意,最初您从<%= pageNumber%>获取pageno的值。

So, you can directly assign that variable's value in script variable like below:

因此,您可以直接在脚本变量中分配该变量的值,如下所示:

var pageno = '<%= pageNumber%>';