日期:2014-05-16 浏览次数:20457 次
<script type="text/javascript" src="/Test/js/jquery.js/"></script>
<script type="text/javascript">
//检测用户名是否已在
$(document).ready(function(){
$("#other_email").blur(function(){
alert("aaa");
});
});
</script>
</head>
<body>
<input id="other_email" type="text"/>
</body>