将变量发送到 Jeditable 函数

Send a variable to a Jeditable function

我正在使用 Jeditable 插件在我的网页中编辑联系人。问题是我必须通过 Jeditable 函数将联系人姓名发送到 php 处理程序。

这是我要发送给 pro_handler.php

的值
$contact = $_GET['contact'];

这是我用来处理文本区域的 Jeditable 函数

    $(".editable_textarea").editable("inc/pro_handler.php", { 
                        type   : 'textarea',
                        select : true,
                        submit : 'OK',
                        cancel : 'cancel',
                        cssclass : "editable",
                        id   : 'elementid',
                        data : 
                        name : 'newvalue',
                      });

所以我想以某种方式将 $contact 变量传递给 pro_handler.php,但我不知道该怎么做。谢谢

From the doc: (Mixed) submitdata: Extra parameters when submitting content. Can be either a hash or function returning a hash.

因此,您可以执行以下操作。

$(".editable_textarea").editable("inc/pro_handler.php", { 
    type : 'textarea',
    select: true,
    submit: 'OK',
    cancel: 'cancel',
    cssclass: "editable",
    id: 'elementid',
    name: 'newvalue',
    submitdata: {"contact": "the_value_to_be_sent"}
});