Heim > Fragen und Antworten > Hauptteil
Ich habe den darauf basierenden Code eingegeben. Warum gibt es beim Klicken auf die Anmeldeschaltfläche keinen Fehler oder keine Antwort?
悉阳桑2018-04-18 20:07:45
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
时光@记忆2018-04-16 22:10:02
(type='button')的时候它只是一个按钮。没有加入onclick()事件的时候,什么都不会发生。而(type="submit")会提交表单到服务器