私のページには次のようなリンクがあります。
<input onkeydown="check_me(event,this,\''. $post['id'] .'\',\''.$access_token.'\');" id="comment_msg" type="text" size="40" placeholder="Write a comment" />
次の関数を呼び出しています:
function check_me(event,element,post_id,access_token){
if(event.keyCode == 13){
fb_comment(post_id, access_token,element);
}
}
function fb_comment(post_id, token,element){
jQuery.ajax({
type: "GET",
url: "comment_post.php",
data: 'id='+post_id+'&token='+token+'&comment='+element.value,
success: function(html)
{
element.value='';
}
});
}
問題は、要素値を送信した後、ページのリロードです。要素値を送信した後にページのリロードを停止するにはどうすればよいですか!!!