gpt4 book ai didi

php - 如何在提交时清除引导模式的数据

转载 作者:行者123 更新时间:2023-12-01 03:36:34 26 4
gpt4 key购买 nike

我使用此ajax代码在模型上提交数据,但模型在不重新加载页面的情况下不清楚

$.ajax({
type:'POST',
data: {phone_no:phone,note:note,todate:todate,fromdate:fromdate},
url:'calls_note.php',
success:function(data) {
if(data == 1)
{
$('#info3').hide();
$('#err_msg').show().children('div').html("Error in updating Note").show().fadeOut(10000);
$('#info').hide();
}
else
{
$('#info3').hide();
$('#err_msg').hide();
$('#info').hide();
$('#table_div').html(data);
$('.table').dataTable();
$("#myModal").modal("hide");
$(this).removeData('#myModal');


}
}
});

请告诉我如何在不重新加载页面的情况下清除模态数据

最佳答案

请尝试一下该行的源代码

$('#myModal form :input').val("");

此代码将在您成功提交数据后清除数据。将此代码放入 success 函数中。

关于php - 如何在提交时清除引导模式的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32481278/

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