gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 19:49:35 26 4
gpt4 key购买 nike

我使用 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!';
}
}
})
})

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

最佳答案

将选项声明和“切换”部分分开即可:

$("#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');
});

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

关于javascript - 如何将切换和验证选项添加到 x-editable?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18107580/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com