当前位置: 代码迷 >> Web前端 >> jquery live()的应用
  详细解决方案

jquery live()的应用

热度:619   发布时间:2012-07-23 09:42:19.0
jquery live()的使用
<html>

<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("p").live("click",function(){
  $(this).hide();
  });
  
  $("span").click(function(){
  $("p").click();
 });

});
</script>
</head>

<body>
<p>If you click on me, I will disappear.</p>
<span>我爱你</span>
</body>

</html> 
?
  相关解决方案