function requestAnswer(){
//顯示查詢結果的地方
var showResult = $("#Showing the search result container id");
//輸入單詞的地方
var input = $("#Your input field id");
//判斷用戶是否輸入內容
if($.trim(input.val()) == "")
{
showResult.html("不存在改詞條的解釋");
return;
}
//妳的servlet地址
var mySevlet = "http://xxxx.xxx.xxx.xx";
//妳要提交的數據
var data = {word:input.val()};
$.ajax({
url:mySevlet,
type:"post",
dataType:"text",
data:data,
async:true,
cache:false,
success:function(response){
showResult.html(response);
},
error:function() {
showResult.html("請求錯誤");
}
});
}