我可以知道在哪个方向单击了 numerictextbox - 向上还是向下?
$('<input name="' + options.field + '"/>').appendTo(container).kendoNumericTextBox({
min: 1,
max: 9,
decimals: 1,
format: "n0",
value: 1,
spin: function(el) {
var count = this.value(),
model = options.model;
model.set("quantity", count);
addCharacteristic(count);
setPrice(e, count, model);
}
});
}