Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページに div (class=result) が含まれているので、div(result) には別の div (class=update) が含まれています。 _POST['compet'] 値 succed.php を開いて $_POST['compet'] を受信した後に div(結果) を更新するにはどうすればよいですか?
下手な英語でごめんなさい
私はajaxで自分で問題を解決しました
<script type="text/javascript"> $(document).ready( function (){ $.ajax({ url: 'insert.php', type: 'POST', data: { compet: $('#compet').val() }, success: function(data){ $(".myresult").html(data); } }) }) </script>