私は関数onblurを呼び出しています..その関数はajaxを呼び出し、そのajaxは文字列を取得します..
今、私は文字列の値が利用できるかどうか..その後、テキストボックスが赤くなる..
私のajaxコードは
function ucheck(){
dojo.xhrPost({
// The URL to request
url: "ucheck",
timeout : 3000 ,
content: {
username: dojo.byId("pref_id").value
},
// The method that handles the request's successful result
// Handle the response any way you'd like!
load: function(result) {
var fi=result;
document.getElementById('co').innerHTML=fi // this is print the value in lable
}
});
}