나는 널 (NULL) 정수를 사용하여, 다음과 같은 방법으로 하나 있음을 증가 해요 : 어디를 inputfield 지금null 허용의 INT의 가치를 증가 (INT?)
item.addItem = function() {
//Check if item is already in the table on the right
if (viewModel.orderedItems.indexOf(this) < 0) {
if (isNaN(this.qty) || this.qty == 'undefined' || this.qty <= 0) {
//alert('is NaN1')
this.qty = 1;
//this.qty.value = 0;
}
//alert(this.qty.value);
viewModel.orderedItems.push(this);
}
else {
if (isNaN(this.qty) || this.qty == 'undefined' || this.qty <= 0) {
//alert('is NaN2')
this.qty + 1;
//this.qty.value = 0;
}
else {
viewModel.orderedItems.remove(this);
this.qty = this.qty + 1;
viewModel.orderedItems.push(this);
}
}`
,이 수량 보여줍니다 그것을 바꿀 수 있습니다.
예를 들어 수량을 15 개 썼고 한 개씩 늘리려면 '151'(15 +1)이됩니다. 어떻게 실제로 증가시킬 수 있습니까? 하나를 추가하는 대신에 하나씩?
입력 해 주셔서 감사합니다.
this.qty + 1;
parseInt(this.qty) + 1;
함으로써하지만 당신은 수량 값의 뭔가 변화 형 때문에 문제가 :
당신이 유형을 캐스팅 할 수있을 것'+ this.qty + 1'뿐만 아니라, 덜 읽을 수 있지만! – ftor