我在我的网站上使用Github页面,它不允许使用PHP。
但是,由于我正在建立一个电子商务网站,我需要一个购物车 - 带按钮" 将商品添加到购物车"和" 结帐"。
这个想法是,结账时,用户必须填写姓名,地址,电子邮件和联系电话。他/她在购物车中的订单将成为默认邮件正文。
我可以将simplecart.js集成到Jotform吗? (订单将作为Jotform中邮件正文的参数发送)
答案 0 :(得分:0)
simplecart-js是我最喜欢的购物车脚本,在我制作的每个需要结帐功能的网站上使用它。
它有好documentation
根据您的需要,要获得simplecart项目,您可以使用simplecart.each
函数。
也许是这样的:
var cart = '', total = 0;
simpleCart.each(function(item, i){
var subtotal = item.get('price') * item.get('quantity');
cart += i + '. ' + item.get('fullname') + ' >> $' + item.get('price') + ' x ' + item.get('quantity') + ' = $' + subtotal + '\n';
total += subtotal;
});
cart += '\n\nTotal = $' + total;
$('#messagebody').val(cart);
内容正文的输出将是这样的:
1. product 1 >> $100 x 2 = $200
2. product 2 >> $75 x 3 = $225
Total = $425