jquery bind()名稱空間程式碼例項

螞蟻小編發表於2017-04-14

關於bind()和名稱空間可以參閱以下兩篇文章。

下面只是分享一個關於bind()名稱空間應用的程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
  $("p").bind("click.background",function(){
    $(this).css("background","#ccc")
  })
  $("p").bind("click.font",function(){
    $(this).css("font-weight","bold")
  })
  $("p").unbind("click.font");
})
</script>
</head>
<body>
<p>螞蟻部落</p>
</body>
</html>

相關文章