form:<form id="form" action="updatescore.php" method="post">
と php file:updatescore.php
があり、フォームからの入力値を使用してデータベースを更新するコードが含まれています。これはすべて、送信ボタンを使用するときに機能します。
javascriptステートメントがtrueの場合、送信ボタンを削除してフォームを送信したいと思います。
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
}
});
}
ただし、ステートメントが true で、データベースが更新されていない場合は何も起こりません。これに関するアイデアはありますか?
敬具、