Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
221 views
in Technique[技术] by (71.8m points)

java - Is it possible to use jsp variable value to initialize JQUERY variable?

I have some questions which are as follows:

  1. How can I use the JSP variable/array in JQUERY code? Here what ever the JQUERY code we have is stored in separate .js file and that file is included in the JSP file.

  2. Actually I want to initialize the JQUERY array with the JSP variable. So please guide me to achieve this task.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In Plain Old JSP

<script>
  var someText = "<%= myBean.getText() %>";
</script>

Using EL (Expression Language)

<script>
  var someText = "${myBean.text}";
</script>

Using Struts

<script>
  var someText = '<bean:write name="myBean" property="text" />';
</script>

Using JSTL

<script>
  var someText = '<c:out value="${myBean.text}" />';
</script>

In essence, it's possible to populate Javascript objects from JSP. Don't forget that scriptlets and tags are just rendered back as HTML/XHTML, so JS cannot talk to tags and vice-versa.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...