Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例: var a=10; があります。今私はjspタグで「a」の値を使いたい
<% int b= "how to store javascript variable here" %>
サーバー側で送信/処理する前に、隠しフィールドにjavascript変数値を設定できるため、リクエストパラメーターの一部として送信されます
document.getElementById('myHidden').value=myVariable;
サーバー側コードで javascript 変数にアクセスするには
Request.getParameter("hiddenName")