1 回答

TA貢獻(xiàn)1909條經(jīng)驗 獲得超7個贊
在 JavaScript 中進(jìn)行 ajax 調(diào)用,如下所示:
$(document).ready(function() {
$('.editar').click(function() {
$.ajax({
url: 'yourUrl.php',
type: 'GET',
data: { edited_text: text,
edited_id=postId },
success: function() {
//Do something here
},
error: function(XMLHttpRequest, textStatus, errorThrown)
{
//case error }
});
});
});
在你的 php 代碼中:
<?php
$text = $_GET['edited_text'];
$post_id =$_GET['edited_id];
//Your code
?>
添加回答
舉報