這是我的laravel
檢視碼。在這裏,我正在嘗試增加計數器值(即,值=「0/5」)。我有模態內的輸入字段,當點擊模型內部的保存按鈕時,應根據填充的輸入字段增加值.ie(1/5..2/5 ..)如何在輸入字段填充時增加計數器值?
我試圖增加這些計數器value.But它顯示NaN的
var val;
$("input").click(function() {
val = $('#counter').val();
val++;
$('#counter').prop('value', val)
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="panel-title pull-left">
<i class="fa fa-check-circle" style="font-size:20px;color:lightgreen">
</i> Price,stock and Shipping Information<input type="submit" id="counter" value="0/5" style="background-color: transparent; border:none">
</div>
變化從 「0/5」 到 「0」,然後重新嘗試它的價值屬性。 – tibetty
這工作!但我想要它爲0/5,並且需要用計數器值替換'0' –
您的意思是0滿分爲5? – tibetty