如何在 layui 登录页面设置跳转
layui 框架提供了便捷的方式来设置登录页面跳转。具体步骤如下:
1. 添加跳转代码
在 login.html 页面中,在登录表单提交按钮的点击事件中添加以下代码:
<code class="html">form.on('submit(login)', function(data){ if(data.field.username === 'admin' && data.field.password === '123456'){ // 成功登录,跳转到指定页面 window.location.href = 'index.html'; }else{ // 登录失败,提示错误信息 layer.msg('用户名或密码错误'); } return false; });</code>
2. 修改 form 配置
在 lay-filter="login" 的 form 元素中,添加以下配置项:
<code class="html"><form class="layui-form" lay-filter="login"> <input type="hidden" name="redirect" value="index.html"> </form></code>
原理解释:
form.on('submit(login)'
函数被触发。window.location.href
指定的页面。name="redirect"
的隐藏输入字段用于指定跳转的目标页面。当 form 提交时,该值将被传递到服务器端。redirect
参数的值进行跳转,从而实现登录后跳转到指定页面的功能。以上是layui登陆页面怎么设置跳转的详细内容。更多信息请关注PHP中文网其他相关文章!