读书人

jquery live()的应用

发布时间: 2012-07-23 09:42:19 作者: rapoo

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> 
?

读书人网 >Web前端

热点推荐