我的页面中有一个链接,如下所示:
<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='';
}
});
}
问题是提交元素值后页面重新加载,提交元素值后如何停止重新加载页面!!!