easyui-numberbox 电玩女神 2022-08-27 01:09 2阅读 0赞 <input name="money" id="money" type="text" class="easyui-numberbox" data-options="min:0,precision:2"/> //最小值为0 ,保留两位小数 Create numberbox from markup. <input type="text" class="easyui-numberbox" value="100" data-options="min:0,precision:2"> Create numberbox using javascript. <input type="text" id="nn"> $('#nn').numberbox({ min:0, precision:2 }); $('#nn').numberbox('setValue', 206.12); var v = $('#nn').numberbox('getValue');
还没有评论,来说两句吧...