日期:2014-05-16  浏览次数:20423 次

jquery的一点小问题,帮忙找错啦
<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>

看下哪错了,失去焦点时没反应,包没问题
jquery html javascript

------解决方案--------------------
没错啊,先取得焦点,在别的地方点一下失去焦点后alert生效。
------解决方案--------------------
看不出任何问题