我有一个表单:<form id="form" action="updatescore.php" method="post">
和一个 php 文件:updatescore.php
其中包含使用表单中的输入值更新数据库的代码。这一切都在使用提交按钮时起作用。
现在,如果 javascript 语句为真,我想删除提交按钮并提交表单。
js代码部分为:
if (document.getElementById('uhs').innerHTML > 0) { //this is true because the div gone is hidden
$('#gone').hide();
$.ajax({
type: "POST",
data: $("#form").serialize(),
cache: false,
url: "updatescore.php",
success: function () { //if submit to db is done
getUsers(1); //a function to reload a page overview
}
});
}
但是,如果该语句为真并且数据库未更新,则不会发生任何事情。关于这个有什么想法吗?
亲切的问候,