我使用 JEditable 制作以下代码的编辑字段:
$(function() {
$(".field").editable("http://localhost/index.php/welcome/update_record", {
event : "mouseover",
style : "inherit",
submit : "save",
callback: function(value, settings) {
//some code
}
});
});
我需要更新数据库中字段的值,但如果用户没有使用他的登录名/密码对进入系统,我需要显示有关它的消息并返回该字段的旧值。那么,我怎样才能发送字符串的旧值呢?如何将它添加到 $_POST 数组?谢谢你。