左にスライドすると、別のタグの値からスライダの値を減算したいのですが、右にスライドするとスライダの値を他のタグの値。ブートストラップスライダバーのスライドを左に引く、右にスライドを追加する
今のところそれはどちらも減算されます...私はブートストラップスライダを使用します。
これはジャバスクリプトである:
function subtractfromBeg(newValue) {
var currentBeg = document.getElementById('amount');
document.getElementById("amount").innerHTML = parseInt(currentBeg.innerHTML) - newValue;
}
これは合計300 000
あるHTML<div class="row">
<div class="col-md-12 teBetalen well">
<h2>Scenario: @Html.DisplayName(Model.ScenarioType.ToString())</h2>
<h3 id="amount">@Html.DisplayName(Model.Bedrag.ToString()) Euro</h3>
</div>
</div>
<input [email protected]("ex" + teller) data-slider-id='ex1Slider'onchange="***subtractfromBeg(this.value)"*** type="text" data-slider-min="@(projectCat?.Min_bedrag ?? 10)" data-slider-max="@(projectCat?.Max_bedrag ?? 20)" data-slider-step="1" data-slider-value="0" />
あります
私は絵が私の言いたいことを明確にしたいと思う。スライダーにどのように対処して、スライダーが残っているのがわかりますか?
コードのスクリーンショットの代わりに、 –
こんにちはレナートです。ようこそ - http://stackoverflow.com/help/how-to-askに質問する方法をお読みください。ここでコードを画像として表示する必要はありません。エディタでコードブロックに変換できます。 – micstr
function subtractfromBeg(newValue){ var currentBeg = document.getElementById( 'amount');document.getElementById( "amount")。innerHTML = parseInt(currentBeg.innerHTML) - newValue; } 大変申し訳ございません。 –