按最小购买数量的倍数下订单,并判断是不是倍数

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

我按照此帖的方法:
Ecshop 限制购买数量:http://bbs.ecshop.com/thread-160485-1-1.html
做了,现在有个问题烦请帮忙:
goods.dwt里的代码:
/**
* 点选可选属性或改变数量时修改商品价格的函数
*/
function changePrice()
{
var attr = getSelectedAttributes(document.forms['ECS_FORMBUY']);
var qty = document.forms['ECS_FORMBUY'].elements['number'].value;

{if $goods.min_number}
if(qty < {$goods.min_number})
{
alert('您输入的数字小于此商品最小购买数量:{$goods.min_number}');
qty = {$goods.min_number};
}
{/if}

Ajax.call('goods.php', 'act=price&id=' + goodsId + '&attr=' + attr + '&number=' + qty, changePriceResp**e, 'GET', 'JSON');
}

现在只是判断了小于最小购买数量的,我希望再加上这样一个判断:
当输入的购买数量大于或等于最小购买数量时,检查是不是最小购买数量的倍数,如果是则可以,如果不是则提醒:您输入的购买数量不是最小购买数量{$goods.min_number}的倍数,请按最小购买数量的倍数填写购买数量
这个判断怎么写,烦请告知,谢谢