如何将切换和验证选项添加到x-editable?

时间:2013-08-07 15:32:49

标签: javascript x-editable

我使用x-editable作为内联编辑器http://vitalets.github.io/x-editable/docs.html

我想通过其他链接切换内联表单:

$("#how").click(function(e) {
  e.stopPropagation()
  e.preventDefault()
  $("#com").editable({
    'toggle',
    validate: function(value) {
      if($.trim(value) == '') {
        return 'The content can not be blank!';
      }
    }
  })
})

但它不起作用,我想知道如何传递切换和验证选项。

1 个答案:

答案 0 :(得分:3)

分离选项声明和'切换'部分将做到这一点:

$("#how").click(function(e) {
  e.stopPropagation();
  e.preventDefault();
  $("#com").editable({
    validate: function(value) {
      if($.trim(value) == '') {
        return 'The content can not be blank!';
      }
    }
  });
  $("#com").editable('toggle');
});

希望这对其他人有帮助:))