我找到了一个 ajax 教程的代码,但不熟悉那里的某些代码
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
document.myForm.time.value = ajaxRequest.responseText;
}
}
ajaxRequest.open("GET", "pay.php", true);
ajaxRequest.send(null);
有人可以告诉我上面的代码是什么意思,是否有任何变量等?我知道 pay.php 是它所引用的 php 文件,但是前三行编码是什么意思?