EasyUI Numberbox onchange 绑定

<input class="input_text easyui-numberbox" type="text" id="thrGiftId" name="thrGiftId"
                               data-options="required:true,min:1" style="width: 162px; margin-top: 9px;"/>

numberbox 此时使用onblur事件失效,正确的绑定事件如下

$('#thrGiftId').numberbox({
    onChange: function () {
        //do something
    }
});

猜你喜欢

转载自blog.csdn.net/qq_31459039/article/details/82898248