js消息框
阿新 • • 發佈:2017-12-13
form gpo null urn 請求 layer cat 消息 cal
<script> function del(obj, id) { layer.confirm(‘是否要刪除信息!‘, { btn: [‘確定‘, ‘取消‘] }, function (index, layero) { //請求地址 //判斷返回數據 $(obj).parent().parent().remove(); layer.msg("刪除成功!", { icon: 1, time: 1000 }); }); } </script> <a onclick="del(this,null)">刪除</a>
<script type="text/javascript"> $(function () { //獲取按鈕單擊事件 $("#btnLogin").click(function () { var Name = $("#form-username").val(); //獲取用戶名 var Pwd = $("#form-password").val(); //獲取密碼 //用戶名最低4位 //密碼最低6位 if (Name.length < 4) { layer.msg(‘用戶名輸入有誤 ‘, { icon: 2 }); return; } if (Pwd.length < 6) { layer.msg(‘密碼輸入有誤! ‘, { icon: 2 }); return; } //把數據提交給服務器 //輸入框內容為空格時候 提交是http://localhost/?username=%20%20%20%20%20&password=%20%20%20%20%20%20 能提交 $.get("/Login/Login", { Name: Name, Pwd: Pwd }, function (data) { if (data == "ok") { //登錄成功 //直接跳轉頁面 layer.msg("登錄成功", { icon: 1 }); location.href = "/Home/Index"; } else { //登錄失敗 //data; layer.msg(data, { icon: 2 }); } }); }); }) </script>
js消息框