gpt4 book ai didi

javascript - x-可编辑停止输入时提交

转载 作者:行者123 更新时间:2023-11-28 06:42:57 25 4
gpt4 key购买 nike

我正在尝试按摩 x-editable 以提交“停止输入”的上下文...

这是我的做法:

  $('.editable').on('shown', function(e, editable) {
$(editable.input.$input).keyup(_.debounce( function(){
<...Here should com the correct submit code...>
$(editable.input.$input).editable('submit', editable.options);
} , 1000));
});

问题是这条线根本不起作用。

$(editable.input.$input).editable('submit');

我收到此异常:

Uncaught TypeError: Cannot read property 'options' of undefined
$.fn.editable @ bootstrap-editable.js?body=1:2058
(anonymous function) @ unobtrusive.js?body=1:225
later @ underscore.js?body=1:846

有什么想法我该如何提交吗?理想情况下,我想使用先前可编辑调用分配的选项进行提交。

这是之前的调用:

$('.new_association_record').editable({
ajaxOptions: {
type: 'post',
dataType: 'script'
},

最佳答案

经过几个小时的痛苦,我检查了可编辑的来源......不幸的是,该文档尚未更新。为了使用“提交”消息,我们需要额外的数据...

所以这段代码运行良好:

editable.input.$input.closest('form').submit();

关于javascript - x-可编辑停止输入时提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33635451/

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