为了账号安全,请及时绑定邮箱和手机立即绑定

单击注销按钮时,在注销操作前显示模态表单

单击注销按钮时,在注销操作前显示模态表单

PHP
HUX布斯 2021-06-17 18:11:55
大家好。我正在开发 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>我希望在单击按钮后,会出现要求评分的模式。模态关闭/解除后,签名/子输出过程继续。
查看完整描述

1 回答

?
智慧大石

TA贡献1946条经验 获得超3个赞

<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;

     }

});


查看完整回答
反对 回复 2021-06-19
  • 1 回答
  • 0 关注
  • 115 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信