這裏是我的代碼:如何更新頁面異步
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form>
<table>
<tr>
<td>
<input type="text" name="input" size="20" class="FormText" readonly />
<td />
<tr />
<tr>
<td>
<input type="button" name="one" value="1">
<td />
<tr />
</table>
</form>
</body>
</html>
當按下button 1在輸入字段中顯示1在同一頁上我想要的。我知道這是通過Ajax實現的,但我無法做到。我閱讀了很多文章,但沒有任何幫助。
這不是使用AJAX的情況。這看起來更像是一個onclick事件http://www.w3schools.com/jsref/event_onclick.asp –