How to insert javascript inside a java scriplet in JSP?

风格不统一 提交于 2019-12-11 04:17:15

问题


Here is my function:

var boxName = document.getElementById('searchBox').value;

How can I put the value of boxName inside the scriplet like this?

<%BoxList.getInstance().getBoxListNames().contains(boxName);%>

回答1:


--Not Possible

You might misunderstand that jsp and javascript existed on same document.Yes but JSP part compiles on server side itself comes to client.

Java script Plays on client side and JSP plays on server side.

What you need is you have to make a server request.And send that string a query parameter.

And please prefer to read How to avoid Java code in JSP files?



来源:https://stackoverflow.com/questions/17520852/how-to-insert-javascript-inside-a-java-scriplet-in-jsp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!