使用Jquery和Ajax将div元素的内容保存在文件中

时间:2013-02-23 00:09:14

标签: jquery ajax

我有一个php文档,并且在文档PHP中,表正在从数据库加载记录,我在php文档的末尾添加了jquery代码以将'table:eq(9)'内容保存到一个HTML文件

我试过这个但是没有用:

var bufferId = $("table:eq(9)").html();
$.ajax({
    type: "POST",
    url: "saver.html",
    data: {
        id: bufferId
    },
    dataType: "html",
    success: function (data) {
        alert("ok");
    }
});

0 个答案:

没有答案