使用PHP将段落存储到数据库中而不刷新页面

时间:2015-04-14 07:47:18

标签: php jquery mysql ajax

我有一个index.php页面,其中包含一个段落元素&输入按钮:

<p id="result">Hello this is test paragraph</p>    
<input id="insertbutton" type="button" value="insert" />

当我点击插入按钮时,我想将段落内容存储到数据库而不刷新页面..

希望我能得到帮助

非常感谢

2 个答案:

答案 0 :(得分:0)

<p id="result">Hello this is test paragraph</p>

<input id="insertbutton" type="button" value="insert" />

// AJAX

$("#insertbutton").click(function(){
var dataToPass=$("#result").html();

$.ajax({
url:'Your_PHP_File_URL_that_will_do_insertion',
data:dataToPass
});
})

答案 1 :(得分:-1)

使用Ajax与jQuery发出这样的帖子请求就足够了。

$("#insertbutton").click(function(){
    var data = "text=" + $("#result").text();
    $.ajax({
        type: "POST",
        url: "post.php",
        data: data,
        success: function(){
            alert("success");
        }
    });
});