...
|
...
|
@@ -66,11 +66,14 @@ $(function() { |
|
|
});
|
|
|
}).delegate('#checkout_btn', 'click', function(e) {
|
|
|
e.preventDefault();
|
|
|
Cart.checkStorage(function() {
|
|
|
if (!$(this).hasClass('disable')) {
|
|
|
window.location.href = '/shopping/order';
|
|
|
}
|
|
|
});
|
|
|
if($('.chk-group').length) {
|
|
|
Cart.checkStorage(function() {
|
|
|
if (!$(this).hasClass('disable')) {
|
|
|
window.location.href = '/shopping/order';
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
return false;
|
|
|
});
|
|
|
|
|
|
// // 全选和单选
|
...
|
...
|
|