我使用 Twitter Bootstrap 并决定使用 X-editable。我放入了所有必要的文件,它工作正常,除了我想将值传递到post.php
我希望 PHP 处理的地方$_POST["value"]
。
可编辑元素的标记是
<a href="#" id="example">Example</a>
我这样称呼它
$(function() {
$.fn.editable.defaults.mode = 'inline';
$('#example').editable({
type: 'text',
pk: 1,
url: 'post.php',
title: 'Enter example'
});
});
我使用jEditable作为内联编辑器,在其中我将值传递给 php 文件没有问题,我想用 X-editable 这样做,但我似乎做不到。
如何将值传递给post.php
以便我可以使用 php 来操作数据?