为什么我的前端点击登录按钮始终没有反应呢?也不报错。是不是jquery写错了,几乎是完全copy的朱老师的啊。为什么还是没反应?公共文件也引入了JQUERY。麻烦大神指点一下。以下是view层local.html文件源码
{include file='public/header' /}
ဇ

Copyright © 2017.Company name All rights X-admin
{include file="public/script" /}
layui.use(['form'],
function() {
$ = layui.jquery;
var form = layui.form(),
layer = layui.layer;
$('.x-login-right li').click(function(event) {
color = $(this).attr('color');
$('body').css('background-color', color);
});
/*监听提交
form.on('submit(save)',
function(data) {
console.log(data);
layer.alert(JSON.stringify(data.field), {
title: '最终的提交信息'
},function () {
location.href = "__STATIC__/index.html";
})
return false;
});
*/
});
$(function(){
$("#loginbt").on('click',function(){
$.ajax({
type:'POST',
url:"{:url('login/check')}",
data:$(".layue-form").serialize(),
dataType:"json",
success:function(data){
if(data.status==1){
alert(data.message);
window.loction.href="{:url('index/index')}";
}else{
alert(data.message);
window.loction.href="{:url('login/index')}";
}
}
})
})
})