我想创建一个滑块,以显示1到115792089237316195423570985008687907852837564279074904382605163141518161494337.但是,当我移动滑块时,每个数字的末尾都有很多零(运行下面的代码,您将看到)。当然,我可以使用5个滑块来解决此问题。但是我可以只使用一个吗?怎么样? 谢谢。
.slider {
width: 100%; /* Full-width */
}
<p>Choose your private key:</p>
<form name="bitcoinPrivateKeyForm">
<input type="range" name="privateKeyInput" id="privateKeyInputId"
value="65792089237316195423570985008687907452837564279074904382605163141518161494337"
min="1" max="115792089237316195423570985008687907852837564279074904382605163141518161494337"
oninput="privateKeyOutputId.value = bigInt(privateKeyInputId.value)"
class="slider">
<output name="privateKeyOutput" id="privateKeyOutputId">
65792089237316195423570985008687907452837564279074904382605163141518161494337
</output>
</form>
<script src="https://peterolson.github.io/BigInteger.js/BigInteger.min.js"></script>