微擎使用post提交,并显示弹出层
Posted getcharzp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微擎使用post提交,并显示弹出层相关的知识,希望对你有一定的参考价值。
微擎使用post提交,并显示弹出层
function changeStatus(id, status) { // 提交数据 var id = parseInt(id); var status = parseInt(status); $.post("提交路径", {id: id, status: status},function(data) { // 返回的结果 if (data.code == 0){ util.message(data.message, data.redirect, ‘success‘); } else { if (data.code == 1) util.toast(‘更改失败!‘, ‘error‘); } // 返回的数据类型 }, ‘json‘); }
以上是关于微擎使用post提交,并显示弹出层的主要内容,如果未能解决你的问题,请参考以下文章