JQuery Knob - 数字格式

时间:2015-06-12 09:09:21

标签: jquery number-formatting jquery-knob

我需要格式化输入值,即旋钮中心的数字。

我试图在.js和.html文件的不同位置合并以下格式代码,但没有成功:

.toLocaleString('无NOK&#39);

我的HTML:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body { font-family:arial; }
input { color:#ffffff !important; font-size: 140% !important; }
#dial {  }
</style>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="jquery.knob.js"></script>
</head>
<body>
<div style="overflow:hidden;margin:auto auto;width:100%;background-color:orange;position:absolute;left:0;right:0;" align="center"><input type="text" id="dial" value="2000000"></div>
<script>
    $(function() {
    $("#dial").knob({
    'fgColor':"#000000",
    'lineCap':"round",
    'min':100000,
    'max':7000000,
    'step':100000,
    'width':250,
    'height':250,
    'format': function(v) {
return "Kr. " + v ;
}

});
    });


</script>

</body>
</html>

1 个答案:

答案 0 :(得分:1)

我认为你在剧本中有一些错误。

str()