0
我想將一個字符串傳遞給一個jsp文件,然後我希望這個jsp文件會對這個字符串做些什麼。我不知道jsp。我只是想確保我的邏輯是正確的。我的代碼「有效」,但我想確定它的功能。我想我發佈字符串的val到瀏覽器的內存並調用test.jsp文件。那是怎麼回事?或者我應該做一些完全不同的事情?從html文件傳遞字符串變量到JSP
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function(){
var qString = '';
$('#execute').click(function(){
qString = $('#query-string').val();
console.log(qString);
$.post('test.jsp',qString);
});
});
</script>
</head>
<body>
<section>
<label for="query-string">Enter your query here!</label>
<input type="text" id="query-string">
<button id="execute">Execute</button>
</section>
</body>
</html>