edittext フィールドに入力が与えられた時点で、誰かが間違った IP アドレス形式の IP アドレスを入力すると、エラーが表示されます。これらの 000.000.0.000 のようにする必要があります。助けてください
HTML5:-
<div data-role="content">
<form id="form">
<div data-role="fieldcontain">
<label for="ip">IP Address/System Name</label>
<input name="ip" id="ip" type="text" pattern="((^|\.)((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]?\d))){4}$">
</div>
<div style="text-align:center;">
<div data-role="button" data-theme="b" data-inline="true" id="button1">Update</div>
</div>
</div>