










<script type="text/javascript">
var xmlhttp;
function init(){
if(window.XMLHttpRequest){// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}else{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
function callback(){
if(xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("tishi").innerHTML=xmlhttp.responseText;
}
}
function yanzheng(){
var name=document.getElementById("name").value;
xmlhttp.onreadystatechange=callback;
xmlhttp.open("GET","yanzheng.action?name="+name,true);
xmlhttp.send(null);
}
window.onload=init;
</script>
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。