gpt4 book ai didi

php - 为按钮点击添加警报

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

我一直在尝试向按钮添加警报,以更新数据库中的用户详细信息。

我尝试直接向按钮添加 onclick 方法并使用函数,但似乎不起作用。

我的按钮是;

<input type="submit" id="profileclick" value="Update" class="button-link"/>

我将通过以下方式提交表格:(如果很重要)

<form id="profile" method="post" action="../script/updateUserDetails.php">

我尝试过的方法之一是

$('#profileclick').click(function(){
alert('Your details have been updated');
$('#profile').submit();
});

在所有情况下,详细信息都会更新,但我没有收到警报。

最佳答案

$('#profileclick').click(function(){    
alert('Your details have been updated');
$('#profile').submit();
});


$('#profile').submit(function( e ){
e.preventDefault();

// ........ AJAX SUBMIT FORM
});

或者只是在提交之前使用 setTimeout 添加延迟...

$('#profileclick').click(function(){    
alert('Your details have been updated');
setTimeout(function(){
$('#profile').submit();
}, 2000);
});

关于php - 为按钮点击添加警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14203282/

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