Remove literals from input mask after form submit?

后端 未结 7 1015
轮回少年
轮回少年 2020-12-31 03:17

this question has already been asked but the solutions where not clear.

Im using Josh Bush\'s MaskedInput plugin for jQuery

What im trying to achieve is:

7条回答
  •  一整个雨季
    2020-12-31 04:04

    unmask is not a function. This is my way of use. autoUnmask: true

        $('#amount').inputmask('999.999.999.999', {
            numericInput: true,
            autoUnmask: true,
        });
    

提交回复
热议问题