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

大家好。我正在开发 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>

我希望在单击按钮后,会出现要求评分的模式。模态关闭/解除后,签名/子输出过程继续。


HUX布斯
浏览 116回答 1
1回答

智慧大石

<form id="logout_form" action="{{url('/logout')}}" method="POST">&nbsp; &nbsp; &nbsp; &nbsp;@csrf&nbsp; &nbsp; &nbsp; <button type="submit" class="btn btn-sm btn-danger">Logout</button></form>在js中:$(document).find('#logout_form').submit(function(){&nbsp; &nbsp; &nbsp;var isConfirm = confirm("Are you sure you want to logout?");&nbsp; &nbsp; &nbsp;if(isConfirm){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return true;&nbsp; &nbsp; &nbsp;} else {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return false;&nbsp; &nbsp; &nbsp;}});
打开App,查看更多内容
随时随地看视频慕课网APP