現在、チャットを作成しようとしていますが、コードのこの部分が思いどおりに動作しません。
$("#chat").focus(function() {
$(document).keypress(function(e) {
if (e.which == 13) {
$.post("send.php",
{
chat: $("#chat").val()
}
);
}
});
});
「send.php」が機能します。ページがリロードされますが、これは行われるべきではなく、値が削除されます。
あなたの助けを願っています。期待してありがとう!