大家好。我正在开发Laravel应用程序。我希望在退出过程发生之前用户单击退出时弹出一个模式(要求评分)。模态保存在刀片php文件中。有没有办法做到这一点?
这是处理签收/签出的代码区域
<form action="{{url('company/sub-subbedout/'.$sub->time_logger->id)}}" immethod="post">
@csrf
@method('PUT')
<button type="submit" class="btn btn-sm btn-danger">Sub Out {{$sub->user->user_profile->first_name or ''}}</button>
</form>
我希望单击按钮后,模态将出现,要求进行评级。模态关闭/关闭后,签出/签出过程继续。
答案 0 :(得分:1)
<form id="logout_form" action="{{url('/logout')}}" method="POST">
@csrf
<button type="submit" class="btn btn-sm btn-danger">Logout</button>
</form>
在js中:
$(document).find('#logout_form').submit(function(){
var isConfirm = confirm("Are you sure you want to logout?");
if(isConfirm){
return true;
} else {
return false;
}
});