現在、私はsendchat.phpに人が入力したいメッセージを送信するシンプルなフォームを持っています。問題は本当にiframeを使用してリフレッシュせずにしたいという問題です。誰かが、別のページに移動したり、リフレッシュしたりすることを意味しないという意味でフォーム提出を行う方法について、適切なコードで私に指摘できますか?GETフォームとボタンを使用したリクエスト
<form target="chat" action="sendchat.php" method="GET">
<input type="text" class="form-control" id="message" maxlength="255" name="message" type="submit" placeholder="Enter your message or use !help for help."><br>
<div class="col-xs-6 text-right">
<button type="submit button" class="btn bg-teal-400 btn-labeled btn-labeled-right"><b><i class="icon-circle-right2"></i></b> Send Message</button>
</div>
</form>
<style> .iframe { display: none; border-color: rgba(225, 225, 225, 0); border-width: 0px; } </style>
<iframe style="" name="chat" width="0px" height="0px" id="chat" onload="clearTextarea();"></iframe>
更新を自動更新するにはあなたのサイトにAJAXを実装する必要があります。こちらを参照してください:http://stackoverflow.com/questions/16616250/form-submit-with-ajax-passing-form-data-to-php-without-page-refresh –