後並沒有改變我使用timepicker http://pttimeselect.sourceforge.net/example/index.htmltimepicker點擊
在我的形式我驗證輸入重視工作以外的所有DEPARTURE_TIME值。
我有一個日期選擇器,它運行良好,但隨着時間的推移它什麼都不做。
<script type="text/javascript">
jQuery(function($) {
var validator = $('#commentForm').validate({
rules: {
departure_time: {
required: true
}
}
$(document).ready(function(){
$('#sample1 input').ptTimeSelect();
});
$(document).ready(function(){
$('#sample2 input').ptTimeSelect();
});
$(document).ready(function(){
$("#departure_time").focus(function(){
console.log($(this).valid());
});
});
$(document).on('change','input',function(){
//alert('testinput');
console.log($(this).valid());
});
</script>
<div id="sample1" class="ui-widget-content" >
<input name="departure_time" size="35" value="" id="departure_time" data-error="#errNm10" />
<div class="errorTxt">
<span id="errNm10"></span><br>
</div>
</div>
你可以創建你的代碼 – koolhuman