0
我已經開始開發使用jQuery手機和在android上進行驗證,因爲缺乏html5支持,我想我會嘗試h5Validate。現在盡我所能,我不能讓這個工作。我已經發布了我的意見,如果有人能夠向我展示這個標記,我將不勝感激。由於jQuery Mobile h5Validate幫助
h5Validate鏈接:
http://ericleads.com/h5validate/?name=
HTML
<div data-role="fieldcontain">
<label for="slider">No of Boxes *</label>
<input type="range" name="slider" id="slider" data-h5-errorid="boxnumber" title="Required: Please enter your box(es)." required data-track-theme="a" value="0" min="0" max="10" required />
</div>
<div id="boxnumber" class="ui-state-error message" style="display:none;" data-theme="b">
腳本
<script>
$(document).ready(function() {
$('#login').h5Validate({
errorClass:'black'
});
});
</script>
CSS
.ui-state-error {
background-color:#BB1100;
color:white;
}
#login input, label {
float:left;
}
.message {
margin-left:1em;
width:20em;
border:1px;
padding:2px;
float:left;
font-size:10pt;
}
.black {
background-color:#111111;
color:silver;
}
這個問題不合理,不能保證回覆?謝謝 – bollo