我在 Div 中有一个简单的联系我们表单。我想要的是当用户提交表单时,经过适当的验证,而不是重定向到其他感谢页面,我只想从该 Div 中删除联系表单并向他展示“谢谢”留言
我怎么做 ?演示/下载代码将很有帮助
$("#submitBtn").click(function () {
$("#divId").html("Loading PleaseWait"); //divId contain all the text field
$.ajax({
type: "POST",
data: "data=" + $("#data").val(), //id of the text field (value)
url: "demo.php", //page name to which u r passing the value
success: function(msg){
if($("#divId").html(msg))
{
$("#divId").html("Thank You");
}
});
});
稍微搜索一下会很棒;)
<div id="form>
[ Your HTML Form]
</div>
<script>
$([form]).submit(function () {
$("#id").html("Thank You");
});
</script>