Ich habe den darauf basierenden Code eingegeben. Warum gibt es beim Klicken auf die Anmeldeschaltfläche keinen Fehler oder keine Antwort?
我也遇到该问题,注释该部分。
success:function(data){ if(data.status ==1){ alert(data.message); window.location.href="{:url('index/index')}"; window.location.href = "{:url('index/index')}"; }else{ alert(data.message); window.location.href="{:url('login/index')}"; window.location.href = "{:url('login/index')}"; } } }); return false; //加入false
(type='button')的时候它只是一个按钮。没有加入onclick()事件的时候,什么都不会发生。而(type="submit")会提交表单到服务器
检查按钮是否加入了监听事件。向监听代码中加如alert()函数检查
我也遇到该问题,注释该部分。
(type='button')的时候它只是一个按钮。没有加入onclick()事件的时候,什么都不会发生。而(type="submit")会提交表单到服务器
检查按钮是否加入了监听事件。向监听代码中加如alert()函数检查