Jeditable - Activate edit of X by clicking on Y

后端 未结 4 1278
野趣味
野趣味 2020-12-11 01:36

I\'m trying to use Jeditable as an inline editing solution.

The default behavior (click on the element to edit it) works quite well, but I would like to activate an

4条回答
  •  不思量自难忘°
    2020-12-11 01:56

    Above code is not quite correct either. It triggers click event on ALL Jeditable instances.

    There are many ways to do it and it all depends on your HTML, but for example if you have following HTML:

    Editable text
    Edit me!!

    Then you can use following JavaScript:

    /* Bind Jeditable instances to "edit" event. */
    $(".edit").editable("http://www.example.com/save.php", {
        event     : "edit"
    });
    /* Find and trigger "edit" event on correct Jeditable instance. */
    $(".edit_trigger").bind("click", function() {
        $(this).prev().trigger("edit");
    }); 
    

提交回复
热议问题