最新文章專(zhuān)題視頻專(zhuān)題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專(zhuān)題1關(guān)鍵字專(zhuān)題50關(guān)鍵字專(zhuān)題500關(guān)鍵字專(zhuān)題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專(zhuān)題關(guān)鍵字專(zhuān)題tag2tag3文章專(zhuān)題文章專(zhuān)題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專(zhuān)題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

bootstrapTable+ajax加載數(shù)據(jù) refresh更新數(shù)據(jù)

來(lái)源:懂視網(wǎng) 責(zé)編:小OO 時(shí)間:2020-11-27 22:08:43
文檔

bootstrapTable+ajax加載數(shù)據(jù) refresh更新數(shù)據(jù)

本文實(shí)例為大家分享了bootstrapTable+ajax加載數(shù)據(jù),和refresh更新數(shù)據(jù)兩部分,供大家參考,具體內(nèi)容如下:1.html;<;form class="form-horizontal" role="form">;<;div class="form-group">;<;label for="calendar" class="col-sm-1 control-label">;日期<;/label>;<;div class="col-sm-3">;<;<;/div>;<;/div>;<;div class="form-group">;<;時(shí)間類(lèi)別<;/label>;<;<。
推薦度:
導(dǎo)讀本文實(shí)例為大家分享了bootstrapTable+ajax加載數(shù)據(jù),和refresh更新數(shù)據(jù)兩部分,供大家參考,具體內(nèi)容如下:1.html;<;form class="form-horizontal" role="form">;<;div class="form-group">;<;label for="calendar" class="col-sm-1 control-label">;日期<;/label>;<;div class="col-sm-3">;<;<;/div>;<;/div>;<;div class="form-group">;<;時(shí)間類(lèi)別<;/label>;<;<。

本文實(shí)例為大家分享了bootstrapTable+ajax加載數(shù)據(jù),和refresh更新數(shù)據(jù)兩部分,供大家參考,具體內(nèi)容如下

1.html

<form class="form-horizontal" role="form">
 <div class="form-group">
 <label for="calendar" class="col-sm-1 control-label">日期</label>
 <div class="col-sm-3">
 <input type="text" id="calendar" class="form-control" value="2018-06-13" class="form-control">
 </div>
 </div>
 <div class="form-group">
 <label for="types" class="col-sm-1 control-label">時(shí)間類(lèi)別</label>
 <div class="col-sm-3">
 <select name="" id="types" class="form-control">
 <option value="week">week</option>
 <option value="month">month</option>
 <option value="sixmonth">sixmonth</option>
 </select>
 </div>
 </div>
</form>
<div class="tableDisplay" id="dataTable">
 <table class="table table-bordered" width="100%" style="margin-bottom:0px;" data-height="460">
 </table>
</div>

2.js

<script>
 //日期時(shí)間格式化20180613
 function dateFormat(time){
 //time = 2018-06-13;
 var splitArr = time.split('-'),
 newStr = splitArr.join('');
 return newStr;
 }
 $(document).ready(function() {
 //啟動(dòng)日期插件
 $('#calendar').datetimepicker({
 language: 'zh-CN',
 weekStart: 1,
 todayBtn: 1,
 autoclose: 1,
 todayHighlight: 1,
 startView: 2,
 minView: 2,
 forceParse: 0
 });
 //日期改變時(shí)刷新table;
 $('#calendar').on('changeDate', function(ev){
 $dataTableHot.bootstrapTable('refresh');
 });

 var type=$("#types option:selected").val();
 $("#types").change(function(){
 type = $("#types option:selected").val();
 $dataTableHot.bootstrapTable('refresh');
 })
 var $dataTableHot = $("#dataTable table").bootstrapTable({
 search: false,
 pagination: true,
 pageSize: 15,
 pageList: [5, 10, 15, 20],
 showColumns: true,
 showRefresh: false,
 locale: "zh-CN",
 striped: true,
 toggle:true,
 ajax:function(request) {
 $.ajax({
 url:"http://127.0.0.1:8080/getdata",
 type:"GET",
 dataType:"json",
 data:{
 date:dateFormat($("#calendar").val()), //dateFormat($("#calendar").val())
 type:type,
 value:"hot",
 order:"asc"
 },
 success:function(data){
 request.success({
 row : data
 });
 $('#dataTable table').bootstrapTable('load', data);
 },
 error:function(error){
 console.log(error);
 }
 })
 },
 columns:[{
 field: "projectId",
 title:"projectId"
 },{
 field: "projectName",
 title:"projectName"
 }, {
 field: "value",
 title:"value"
 }]
 });

 });

</script>

3.刷新表格

$dataTableHot.bootstrapTable('refresh);

4.bootstrap-datatimepick日期時(shí)間插件,日期changeDate事件

$("#canlendar").on('changeDate',function(ev){ ... });

5.在最后添加"操作"列,實(shí)現(xiàn)查看"詳情"操作

columns:[...,
 {
 title:"操作",
 events:{ //為按鈕添加事件
 "click #details":function(e,value,row,index){
 alert("項(xiàng)目名稱(chēng):"+row.projectName);
 }
 },
 formatter:function(value,row,index){ //把需要?jiǎng)?chuàng)建的按鈕封裝在函數(shù)中
 return "<button class='btn btn-default' id="details">詳情</button>"
 }
 }
]

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

bootstrapTable+ajax加載數(shù)據(jù) refresh更新數(shù)據(jù)

本文實(shí)例為大家分享了bootstrapTable+ajax加載數(shù)據(jù),和refresh更新數(shù)據(jù)兩部分,供大家參考,具體內(nèi)容如下:1.html;<;form class="form-horizontal" role="form">;<;div class="form-group">;<;label for="calendar" class="col-sm-1 control-label">;日期<;/label>;<;div class="col-sm-3">;<;<;/div>;<;/div>;<;div class="form-group">;<;時(shí)間類(lèi)別<;/label>;<;<。
推薦度:
  • 熱門(mén)焦點(diǎn)

最新推薦

猜你喜歡

熱門(mén)推薦

專(zhuān)題
Top