I need a JQuery IP Mask plugin

前端 未结 5 1301
春和景丽
春和景丽 2021-02-04 09:11

Is there a good IP Mask plugin for JQuery? I\'ve tried Masked Input Plugin but it doesn\'t IP Addresses with less than 12 digits. Then I\'ve tried meioMask and this doesn\'t wor

5条回答
  •  不知归路
    2021-02-04 09:46

    The working examples from the Masked Input Plugin -
    http://digitalbush.com/projects/masked-input-plugin/

    Are less than 12 characters:

    jQuery(function($){
       $("#date").mask("99/99/9999");
       $("#phone").mask("(999) 999-9999");
       $("#tin").mask("99-9999999");
       $("#ssn").mask("999-99-9999");
    });
    

    They have working examples which are running perfectly?

    What is exatly is your issue and can you post anymore in depth information?

    jQuery(function($){
        $("#MyElementID").mask("10.0.0.0"); //Does this not work?
    });
    

    Are you trying to counter for 1-3 digits in each field?

    eg to be able to.

    $("#MyElementID").mask("1.0.0.0"); //this
    $("#MyElementID").mask("10.10.10.10"); //or this
    $("#MyElementID").mask("100.100.100.100"); //or this
    

    If you be more descriptive you can get help..

    If you are after that you can try something simpler by watermarking the input box rather than enforcing a mask, so you can vary the numbers that can be entered. See Jquery-Watermark - http://code.google.com/p/jquery-watermark/

提交回复
热议问题