| 目次 |
|---|
|
・XMLHttpRequestオブジェクトののプロパティ ・onreadystatechangeプロパティ ・readyStateプロパティ ・responseTextプロパティ ・statusプロパティ |
xmlhttp.onreadystatechange=function(){
// ここにコードを書きます。
}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState == 4){
// ここにコードを書きます。
}
}
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState == 4){
document.myForm.time.value = xmlhttp.responseText;
}
}
| 値 | 状態 |
|---|---|
| 200 | OK |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 500 | Internal Server Error |
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
document.myForm.time.value = xmlhttp.responseText;
}
}