1、判断元素是否有某个属性:hasClass("selected")
<script type="text/javascript">
$("#checkoutbt").click(function(){
$(".cart .list i.select").each(function(){
if(!$(this).hasClass("selected")){
deleid=$(this).attr('value');
$.get("./index.php?r=flow/DeleTempbasketItem&id="+deleid);
}
});
//window.location="./index.php?r=flow/checkout";
});
</script>
2、$.get的一个用法:点击某个元素后,根据条件,转去执行一个动作,动作执行完后,接着下面的执行。
$.get("./index.php?r=flow/DeleTempbasketItem&id="+deleid);
3、遍历元素each
<script type="text/javascript">
$("#checkoutbt").click(function(){
$(".cart .list i.select").each(function(){
if(!$(this).hasClass("selected")){
deleid=$(this).attr('value');
$.get("./index.php?r=flow/DeleTempbasketItem&id="+deleid);
}
});
//window.location="./index.php?r=flow/checkout";
});
</script>