标签:
<input type="text" name="username"/><span id="reg"></span>
<script src=‘jquery.js‘></script>
<script>
$(‘input:text‘).blur(function(){
var url=‘24.php?u=‘+$(this).val()
$.get(url,function(res){
if(res==‘1‘){
$(‘#reg‘).html(‘<font color="red"> 不可用</font>‘)
}else{
$(‘#reg‘).html(‘<font color="blue">可用</font>‘)
}
})
})
</script>
标签:
原文地址:http://www.cnblogs.com/gelei/p/4981143.html