您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)layui中怎么提交post,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
layui提交post:
table.js
//表格屬性:page,elem,url,cols//列屬性:type,field,titletable.render({ //1 開啟分頁 page: true, //2 指定渲染的table容器 elem: '#articleList', //3 異步訪問的路徑 url: '../../user', //4 集合屬性 cols: [[ {type: 'checkbox'}, //4.1 普通屬性 {field: 'username', title: '用戶名稱',width:'11%'}, //4.2 單選框?qū)傩?nbsp; {field: 'sex', title: '性別', width:'11%'}, //4.3 復(fù)選框?qū)傩?nbsp; {field: 'status', title: '狀態(tài)', templet: '#status',width:'11%'}, //4.4 日期屬性 {field: 'updated', title: '最近修改時間',width:'14%', //日期格式轉(zhuǎn)化 templet: function createTime(d){ return new Date(parseInt(d.updated)).toLocaleString() } }, ]] //4.2 數(shù)字條件判斷 ,done:function(res,curr,count){ $("[data-field='sex']").children().each(function(){ //若選取元素為1 if($(this).text() == '1'){ $(this).text('男'); //若選取元素為0 }else if($(this).text() == '0'){ $(this).text('女'); } }); } }); //4.4 調(diào)用的日期格式轉(zhuǎn)化器 Date.prototype.toLocaleString = function() { var y = this.getFullYear(); var m = this.getMonth()+1; m = m<10?'0'+m:m; var d = this.getDate(); d = d<10?("0"+d):d; var h = this.getHours(); h = h<10?("0"+h):h; var M = this.getMinutes(); M = M<10?("0"+M):M; var S=this.getSeconds(); S=S<10?("0"+S):S; return y+"-"+m+"-"+d; /*+" "+h+":"+M+":"+S*/ };
post.js
$.post( //1 異步提交的urL '${pageContext.request.contextPath}/user/add', //2 form表單以鍵值對形式傳輸 data.field, //3 訪問后成功的回調(diào)函數(shù) function (data) { if (data > 0) { //3.1 彈窗提示 layer.msg("添加成功!", {icon: 1}); //3.2 獲得frame索引 var index = parent.layer.getFrameIndex(window.name); //3.3 關(guān)閉當(dāng)前frame parent.layer.close(index); //3.4 刷新頁面 window.parent.location.reload(); }else{ layer.msg("添加失敗!", {icon: 1}); } });
以上就是layui中怎么提交post,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。