我使用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!';
}
}
})
})
但它不起作用,我想知道如何传递切换和验证选项。
答案 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');
});
希望这对其他人有帮助:))