Question

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);%>
Était-ce utile?

La solution

--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?

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top