我正在使用jQuery UI微调器jQuery UI Spinner,我想摆脱逗号编号格式,我的代码如下:
$( "#tank_capacity" ).spinner({
min: 0.00,
step: 0.01,
numberFormat: "n"
});
当微调器到达1000.01时,它会将数字格式化为:1,000.01我希望它始终保持1000.01这样的方法可以吗?
由于
答案 0 :(得分:1)
您可以提供有关您环境的更多信息吗?我在chrome上的jsfiddle上进行了测试并且工作正常(1000.xx而不是1,000.xx),下面的工作示例,几乎在这里我得到你指向的格式。
$(function() {
$( "#spinner" ).spinner({
step: 0.01,
numberFormat: "n"
});
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet"/>
<p>
<label for="spinner">Decimal spinner:</label>
<input id="spinner" name="spinner" value="999.98">
</p>
&#13;