我有一个 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");
}
});