用layui前端框架彈出form表單以及提交

第一步:引用兩個文件ajax

第二步:點擊刪除按鈕彈出提示框動畫

/*刪除開始*/
$(".del").click(function () {
var id = $(this).attr("id");
layer.alert('您肯定要刪除操做嗎?', {
skin: 'layui-layer-molv' //樣式類名 自定義樣式
, closeBtn: 1 // 是否顯示關閉按鈕
, anim: 1 //動畫類型
, btn: ['肯定', '取消'] //按鈕
, icon: 6 // icon
, yes: function () {
//layer.msg('肯定')
$.ajax({
type: "POST",
url: "@Url.Action("Delete", "UserInfo")",
data: { id: id },
success: function (Data) {
if (Data == "ok") {
location.reload();
}
else {
layer.msg('刪除失敗')
}
},
error: function () {
alert("出現錯誤");
return false;
}
}) //ajax結束
}
, btn2: function () {
layer.msg('取消')
}
});
})
/*刪除結束*/

 

 

 

第三步:放一個添加按鈕ui

<div class="layui-form">
<a onclick="func7();" class="layui-btn layui-inline fl w130">添加</a>
<table class="layui-table" style="text-align:center">
<tr>
<th>ID</th>
<th>姓名</th>
<th>性別</th>
<th>年齡</th>
<th>住址</th>
<th>電話</th>
<th colspan="3">操做</th>
</tr>
@foreach (var item in ViewData["UserList"] as List<UserInfo>)
{
<tr>
<td>@item.uID</td>
<td>@item.uName</td>
<td>@item.uSex</td>
<td>@item.uAge</td>
<td>@item.uAdress</td>
<td>@item.uPhone</td>
<td><a id="@item.uID" class="del" style="color:blue">刪除</a></td>
<td><a href="@Url.Action("Edit", "UserInfo")" ?id="@item.uID" style="color:blue">編輯</a></td>
<td><a id="@item.uID" class="xq" style="color:blue">詳情</a></td>
</tr>
}
</table>
</div>

 

 

第四步:點擊添加按鈕彈出form表單填寫信息this

function func7() {
//頁面層
layer.open({
type: 1,
skin: 'layui-layer-rim', //加上邊框
area: ['350px', '360px'], //寬高

content: "@Url.Action("AddUser", "UserInfo")"  //調到新增頁面
});
}

 

 

 

注意:content的值就是要展現的表單信息或某個頁面url,若是要對某個值非空驗證就加 lay-verify="required"屬性。若是是手機號那 lay-verify="phone"  ,數字lay-verify="number"  等。url

須要數字分頁幫助類的留言分享。spa

相關文章
相關標籤/搜索