用jQuery怎么写呀

来源:2-12 删除商品功能

meng境

2015-12-27 21:41

这个例子用jQuery怎么写呀

写回答 关注

1回答

  • qq_小明_24
    2016-05-19 19:39:43
    已采纳
    <script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script>
        <script type="text/javascript">
    	$(function(){
    	
                //绑定点击删除按钮回调函数
    			$("#del").on('click',function(){
    			
    				$("#table tr input").each(function(index,element){
    					console.log(index);
    					console.log($(this).is(":checked"));
    					if($(this).is(":checked"))
    					{
    						$(this).parent().parent().remove();
    					}
    				})
    			
    			});
                
    	
    	
    	});
    
        </script>


    共 1 条回复 >

用JS实现购物车特效

通过JavaScript实现类似淘宝网络购物车功能效果

43240 学习 · 167 问题

查看课程

相似问题