我想要使用jquery插件來處理IPV4地址。插件可在https://github.com/felipevolpatto/jquery-input-ip-address-controljquery插件輸入字段接受多個IP地址
問題是我只能使用一個文本字段的IPV4地址。如果我再使用一個,我只能看到沒有任何分隔符的普通文本字段。如何將它用於IPV4地址的多個文本字段?
代碼:
<form role="form">
<div class="form-group">
<label>Starting Address</label></br>
<input type="text" name="ip1" id="ipv4">
</div>
<div class="form-group">
<label>Ending Address</label></br>
<input type="text" name="ip2" id="ipv4">
</div>
</form>
<script src="js/jquery.input-ip-address-control-1.0.min.js"></script>
<script>
$(function(){
$('#ipv4').ipAddress();
});
</script>