bootstrap select插件 下拉框 、复选框 、使用详解、附.重置 bootstrap-select下拉框复选框中的值/easyui树的复选框中的值。

jsp代码

   action="${path}/workorder/workListStatistics/${branchCode}">
坐席工号:
座席姓名:


工单类型:


style="float: left; width: 7%; margin-left: 22px; margin-right: 130px; position: relative;">
style="width: 112px; MARGIN-LEFT: -232px; margin-top: 10px;">创建开始时间:
value=""
onClick="WdatePicker({maxDate:'#F{$dp.$D(\'endTime\')}',dateFmt:'yyyy-MM-dd HH:mm:ss'})"
style="width: 150px; height: 25px; margin-top: -1px; margin-left: -118px;">


style="margin-left: 1165px; margin-top: -36px;">创建结束时间:
value=""
onClick="WdatePicker({minDate:'#F{$dp.$D(\'startTime\')}',dateFmt:'yyyy-MM-dd HH:mm:ss'})"
style="width: 150px; height: 25px; margin-left: 1261px; margin-top: -71px;">


1.引入js插件在js里面。

bootstrap select插件 下拉框 、复选框 、使用详解、附.重置 bootstrap-select下拉框复选框中的值/easyui树的复选框中的值。_第1张图片

2.jsp页面引入样式和js


3.具体下拉框使用

bootstrap select插件 下拉框 、复选框 、使用详解、附.重置 bootstrap-select下拉框复选框中的值/easyui树的复选框中的值。_第2张图片


4. bootstrap-select 重置下拉框复选框中的值

    (4.1)   jsp页面

bootstrap select插件 下拉框 、复选框 、使用详解、附.重置 bootstrap-select下拉框复选框中的值/easyui树的复选框中的值。_第3张图片

4.2)js代码 表单重置

function formReset() {
$("#permForm input").val('');
$("#permForm select").val('');
$("#typeId").combotree("setValues", "");//easyui树插件的下拉框多选框的值重置
        $("#agentRealname").selectpicker('refresh');//对searchPayState这个下拉框进行重置刷新
}

你可能感兴趣的:(Jsp,前端插件,JavaWeb)