0

我有一个 MVC 视图,它使用缓存值通过以下方式向用户显示

@Html.TextboxFor(x => x.SomeInteger, new { @class="selector" });

和类似的构造。

我的问题是当我这样做时

$(“.selector”).wijinputnumber({
    type: ‘numeric’,
    minValue: 0,
    decimalPlaces: 0,
    showSpinner: true
});

文本框的值设置为 0,但是(例如)用户之前可以输入 4,我需要它来反映这一点。另外,我已经验证了我的模型在 SomeInteger 属性中确实有 4,所以不是这样。

有没有办法告诉 wijinputnumber 不设置初始值?

这是一个展示此问题的 HTML 和 Wijmo/jQuery 的完整示例:

<!DOCTYPE HTML>
<html>
<head>
    <link href="http://cdn.wijmo.com/themes/rocket/jquery-wijmo.css" rel="stylesheet" type="text/css" />
    <link href="http://cdn.wijmo.com/jquery.wijmo-open.1.1.2.css" rel="stylesheet" type="text/css" />
    <link href="http://cdn.wijmo.com/jquery.wijmo-complete.1.1.2.css" rel="stylesheet" type="text/css" />
    <script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.4.min.js" type="text/javascript"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.min.js" type="text/javascript"></script>
    <script src="http://cdn.wijmo.com/external/jquery.bgiframe-2.1.3-pre.js" type="text/javascript"></script>
    <script src="http://cdn.wijmo.com/external/jquery.glob.min.js" type="text/javascript"></script>
    <script src="http://cdn.wijmo.com/external/jquery.mousewheel.min.js" type="text/javascript"></script>
    <script src="http://cdn.wijmo.com/external/raphael-min.js" type="text/javascript"></script>
    <script src="http://cdn.wijmo.com/jquery.wijmo-open.1.1.2.min.js" type="text/javascript"></script>
    <script src="http://cdn.wijmo.com/jquery.wijmo-complete.1.1.2.min.js" type="text/javascript"></script>
</head>
<body>  
    <input type="text" class="correct" value="5" />

    <input type="text" class="notcorrect" value="10" /> 

    <script type="text/javascript">
        jQuery(document).ready(function($) {
            $('.correct').wijtextbox();         

            $(".notcorrect").wijinputnumber({
            type: 'currency',
            decimalPlaces: 2,
            showGroup: true,
            showSpinner: true
            });             
        });
    </script>
</body>
</html>
4

2 回答 2

1

您可以在元素上使用 val() 函数来获取其值

<script type="text/javascript">
    jQuery(document).ready(function($) {
        $('.correct').wijtextbox();         

        $(".notcorrect").wijinputnumber({
            type: 'currency',
            decimalPlaces: 2,
            showGroup: true,
            showSpinner: true,
            value: $(".notcorrect").val()
        });             
    });
</script>

希望这可以帮助,

马特

于 2011-03-02T23:09:10.513 回答
0

事实证明这是目前 Wijmo 中的一个错误,但这篇文章的解决方法如下:

$(“.selector”).each(function () {
var n = $(this).val();
$(this).wijinputnumber(
{
type: ‘numeric’,
minValue: 0,
decimalPlaces: 0,
showSpinner: true,
value: n
});
});
于 2011-03-03T02:13:51.273 回答