gpt4 book ai didi

jquery - 使用可编辑 ("destroy"关闭和打开 xeditable );

转载 作者:行者123 更新时间:2023-12-01 02:29:04 27 4
gpt4 key购买 nike

我正在尝试使用 editable("destroy") 打开和关闭 xeditable。 Xeditable 关闭但不会重新打开。该函数如下所示:

$("#changeType").on("change", function () {
switch ($(this).prop("checked")) {
case true:
$("#status").editable("destroy");
$("#status").editable({
showbuttons: false,
onblur: 'ignore',
mode: 'inline',
send: 'never',
success: function (params) {
return false;
}
}).editable('show');
break;
case false:
("#status").editable("destroy");
("#status").editable();
break;
};
});

请看我的jsfiddle http://jsfiddle.net/ykay/vdoz07qz/3/

最佳答案

您的 case false 中存在拼写错误(缺少 $ 符号):

$("#status").editable("destroy");
$("#status").editable();

关于jquery - 使用可编辑 ("destroy"关闭和打开 xeditable );,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27154656/

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