B-JUI知识点汇聚

官网:http://www.oschina.net/news/56630/b-jui-1-0-beta

 

1、ickeck的checkbox点击事件:

$('input').on('ifChecked', function(event){ //ifCreated 事件应该在插件初始化之前绑定 
  alert(event.type + ' callback'); 
}); 

 

2、时间类型:

<tr>
<td>
<label for="StartTimeStr" class="control-label x100">期限:</label>
</td>
<td>
<input type="text" id="startTimeStr" name="startTimeStr" data-toggle="datepicker" data-rule="date" class="form-control" size="15">
&nbsp;到&nbsp;
<input type="text" id="endTimeStr" name="endTime" data-toggle="datepicker" data-rule="date" class="form-control" size="15">
</td>
</tr>

 

你可能感兴趣的:(UI)