Input box for changing IP Address

前端 未结 2 1707
北荒
北荒 2021-01-22 03:14

I am trying to create an input field for an IP address, broadcast, and subnet. The inputs are used to change the ip of the server. Its an internal website.

I want to mak

相关标签:
2条回答
  • 2021-01-22 04:01

    jQuery IP plugin can be also be useful in your case

    Working DEMO

    0 讨论(0)
  • 2021-01-22 04:08

    You can use a mask plugin - DEMO

    jQuery(function($){
       $("input").mask("9?99.9?99.9?99.9?99", {placeholder:" "});
    });
    
    0 讨论(0)
提交回复
热议问题