gpt4 book ai didi

php - 有没有办法在模式关闭之前(在计时器 4 秒内)将信息保存到 mysql,而不使用提交按钮

转载 作者:行者123 更新时间:2023-11-29 16:08:13 26 4
gpt4 key购买 nike

当模式自动打开时,文本框会包含数据或信息。我想在模式关闭之前或关闭之后将其保存到 mysql,而不使用提交按钮。我想有没有办法使用 jquery 来做到这一点?

我正在使用 laravel,资源 Controller 功能

这是我的带有按钮的代码

$('#student_form').on('submit', function(event){
event.preventDefault();
var form_data = $(this).serialize();
$.ajax({
url:"{{ route('ajaxdata.postdata') }}",
method:"POST",
data:form_data,
dataType:"json",
success:function(data)
{
if(data.error.length > 0)
{
var error_html = '';
for(var count = 0; count < data.error.length; count++)
{
error_html += '<div class="alert alert-danger">'+data.error[count]+'</div>';
}
$('#form_output').html(error_html);
}
else
{
$('#form_output').html(data.success);
$('#student_form')[0].reset();
$('#action').val('Add');
$('.modal-title').text('Add Data');
$('#button_action').val('insert');
$('#student_table').DataTable().ajax.reload();
}
}
})
});

});

最佳答案

您可以通过连接到 bootstrap 中的模态事件来完成此操作。尝试一下,

$('#youModalId').on('hidden.bs.modal', function (e) {
// get the value from the input box
// make the ajax call here
})

有关更多信息,请访问此 link

关于php - 有没有办法在模式关闭之前(在计时器 4 秒内)将信息保存到 mysql,而不使用提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55527890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com