我是产品说明页面中的价格计算器。此页面包含每个产品的多个选项。
这是我在表单提交之前进行验证的java脚本函数。
productAddToCartForm.submitnew = function(button, url) {
//alert(url);
if (this.validator.validate()) {
var form = this.form;
var oldUrl = form.action;
alert(oldUrl);
if (url) {
form.action = url;
}
var e = null;
try {
this.form.submit();
} catch (e) {
}
this.form.action = oldUrl;
if (e) {
throw e;
}
if (button && button != 'undefined') {
button.disabled = true;
}
}
}.bind(productAddToCartForm);
我的要求
这是我的要求。怎么解决这个?
答案 0 :(得分:1)