当前位置 : 主页 > 网页制作 > Dojo >

Dojo:如何从值中删除逗号

来源:互联网 收集:自由互联 发布时间:2021-06-15
我有这个Dijit数字微调器: div class="extra_field hide_on_load form_action_fy" labelAction Fiscal Year/label input name="form_action_fy" id="form_action_fy" data-dojo-type="dijit.form.NumberSpinner" data-dojo-props=" value:@ViewBag
我有这个Dijit数字微调器:

<div class="extra_field hide_on_load form_action_fy">
    <label>Action Fiscal Year</label>
    <input name="form_action_fy" id="form_action_fy"
        data-dojo-type="dijit.form.NumberSpinner" 
        data-dojo-props="
            value:@ViewBag.fy,
            smallDelta:1, 
            largeDelta:1, 
            constraints:{min:2010,max:2020,places:0}"
    />
</div>

在此输入失去焦点后,将添加逗号.如何防止此逗号显示?也就是说,我不想要2011年,而是2011年.

谢谢!
埃里克

简单的答案是在约束对象中添加模式:’#’.

pattern属性允许您指定数字数据的显示方式. Here是dojo关于数字模式的参考的链接.整个页面对格式化数字非常有用.

您的示例最终应该看起来像这样:

<div class="extra_field hide_on_load form_action_fy">
    <label>Action Fiscal Year</label>
    <input name="form_action_fy" id="form_action_fy"
        data-dojo-type="dijit.form.NumberSpinner" 
        data-dojo-props="
            value:2011,
            smallDelta:1, 
            largeDelta:1, 
            constraints:{min:2010,max:2020,places:0,pattern:'#'}"
    />
</div>
网友评论