在給定的領域的EditText顯示它的錯誤輸入的時候會不會有人把IP adsress的incorrent IP地址格式應該是這樣的000.000.0.000 PLZ幫我出如何驗證形式的模式提交
在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>
HTML5模式驗證的作品完美,但它的工作,你必須提交表單,但從你的代碼我可以看到,你使用div來調用一個javascript函數,所以在那個函數手動調用提交 –