focusout和blur事件的區別

antzone發表於2017-04-18

這兩個事件非常類似,當表單元素失去焦點的時候會被觸發。

但是兩個事件也是有區別的,focusout事件就有冒泡效果,blur事件不具有。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.one ,.two {
  width:250px;
  height:150px;
  background-color:green;
  margin:10px;
}
.children {
  width:150px;
  height:30px;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  $(".one").focusout(function () {
    $("#antzone").text("螞蟻部落一");
  })
  $(".two").blur(function () {
    $("#antzone").text("螞蟻部落二");
  })
}) 
</script>
</head>
<body>
<form class="one">
  <input class="children">
</form>
<form class="two">
  <input class="children">
</form>
<div id="antzone"></div>
</body>
</html>

相關文章