大家好。我正在开发 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;
}
});
- 1 回答
- 0 关注
- 115 浏览
添加回答
举报
0/150
提交
取消