在我下面的代码片段中,我的 Ajax 将向 response.php 发送一些数据。如果我想通过 Ajax 发送更多数据,我应该如何进行?我想添加例如 user_id,如底部的 HTML 代码所示。
$(document).ready(function() {
$("#FormSubmit").click(function (e) {
e.preventDefault();
if($("#contentText").val()==='')
{
alert("Du følger allerede denne bloggen");
return false;
}
var myData = 'content_txt='+ $("#contentText").val();
jQuery.ajax({
type: "POST",
url: "assets/plugin/ajax-follow/response.php",
dataType:"text",
data:myData,
success:function(response){
$("#responds").append(response);
$("#contentText").val('');
},
error:function (xhr, ajaxOptions, thrownError){
alert(thrownError);
}
});
});
});
HTML
<div class="form_style">
<input type="hidden" name="content_txt" id="contentText" value="'.$user_info[u_id].'">
<input type="hidden" name="user_id" id="userid" value="'.$whotofollow[u_id].'">
<button id="FormSubmit">Følg</button>
</div>