2016-06-15 16 views
0

現在、私は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> 
+2

更新を自動更新するにはあなたのサイトにAJAXを実装する必要があります。こちらを参照してください:http://stackoverflow.com/questions/16616250/form-submit-with-ajax-passing-form-data-to-php-without-page-refresh –

答えて

0

ajaxを使用して、ページを更新せずにボタンをクリックすると投稿データを取得できます。

<form target="chat" action="sendchat.php" method="GET"> 
<input type="text" class="form-control" id="message" maxlength="255" name="message" placeholder="Enter your message or use !help for help."><br> 
<div class="col-xs-6 text-right"> 
    <button type="button" class="btn bg-teal-400 btn-labeled btn-labeled-right"><b><i class="icon-circle-right2" onclick="save_chat()"></i></b> Send Message</button> 
</div> 
</form> 
function save_chat(){ 
$.ajax({ 
    type: 'POST', 
    url: 'sendchat', 
    data: {'message': $('input[name="message"]').val()}, 
    success: function (data) 
    { 
     //do nothing 
    }, 
    error: function (xhr, ajaxOptions, thrownError) 
    { 
     alert(xhr.status); 
     alert(thrownError); 
}); 
} 
+0

今後の参考情報のために、私が何を確認することができますか?たとえば、メッセージやユーザーなど複数のデータが必要な場合はどうすればよいですか。 – UKTSLiam

+0

val()、 'user': "me"}、 'のように区切られた変数をデータに追加します:data:{'message':$( 'input [name =" message "]' – kiong

関連する問題