我有一些JQuery代码块,它们与我所拥有的一些html按钮相关联,它们将数字增加1或10.问题是,它与最大值变化的数字(如库存级别)相关。
我已尝试在此块中添加一些代码,但整个代码无法运行。我对JQuery相当新,但我如何为此添加“max”属性? (我会作弊,因为它在经典ASP中使用,我会在变量最大值内放置< %%>标记)。
$('.qtyplus10').click(function(e){
// Stop acting like a button
e.preventDefault();
// Get the field name
fieldName = $(this).attr('field');
// Get its current value
var currentVal = parseInt($('input[name='+fieldName+']').val());
// If is not undefined
if (!isNaN(currentVal)) {
// Increment
$('input[name='+fieldName+']').val(currentVal + 10);
} else {
// Otherwise put a 0 there
$('input[name='+fieldName+']').val(1);
}
});
如果使用< %%> JQuery中的asp代码是不是真的可以接受(即使它有效)什么是替代方法?