日期:2014-05-18 浏览次数:20687 次
<body>
<a href="javascript:del()">删除</a>
</body>
<script type="text/javascript">
function del(){
var url="DeleteServlet";
xmlHttp=createXmlHttpRequest();
xmlHttp.onreadystatechange=process;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}
function process(){
if(xmlHttp.readyState==4){
if (xmlHttp.status==200) {
alert("x");
}
}
}
后面 省略 ……