Jquery为DIV添加点击事件,Jquery为a标签超链接添加点击事件

Js代码   收藏代码
  1. 1
      
  2. 2
      
  3. 3
      
  4. 4
      
  5. 5
      
  6. 为这5个DIV绑定点击事件,当点击第2个的时候弹出提示2,第4个的时候弹出提示4  
  7.   
  8. "text/javascript">     
  9. $(function(){     
  10.     $("div").each(function(){  
  11.         $(this).click(function(){  
  12.             alert($(this).text());  
  13.         });  
  14.     });  
  15. });  
  16.   

 

Js代码   收藏代码
  1. class="test">  
  2.         
        
    •                 
    • "#">连接1
    •   
    •                 
    • "#">连接2
    •   
    •                 
    • "#">连接3
    •   
    •                 
    • "#">连接4
    •   
    •                 
    • "#">连接5
    •   
    •         
          
  
  •   
  • "text/javascript">  
  •     $(function () {  
  •         $(".test ul li").each(function () {  
  •             $(this).click(function(){  
  •                 alert($(this).text());  
  •             });  
  •         });  
  •     });  
  •  
  •  

    你可能感兴趣的:(Jquery为DIV添加点击事件,Jquery为a标签超链接添加点击事件)