gpt4 book ai didi

javascript - Uncaught Error : cannot call methods on resizable prior to initialization; attempted to call method 'option'

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:35:30 26 4
gpt4 key购买 nike

我有一个 ajax 请求,它基本上获取一些 HTML 并将其放入 <DIV> 中标签。

但是,如果我在这种情况发生后调用某些东西(例如单击按钮)并尝试对同一个 DIV 使用 div.append,我会收到以下错误:

Uncaught Error: cannot call methods on resizable prior to initialization; attempted to call method 'option'

这基本上是我的一些代码片段:

if (formreq) {
$.ajax({
url: './json/admin/getHTML.php',
type: 'POST',
async: false,
data: { FORMSEQ : formreq } ,
dataType: 'json',
success: function(result)
{
var HTML = result["HTML"];
$('#blankform').append(HTML);
}

});

然后如果我使用类似的东西:

$("#div_" + selectedItem).resizable('option', 'disabled',true);

选择器是通过 Ajax 调用的 HTML 上的有效元素,我收到上述错误。

有什么想法吗? - 谢谢

最佳答案

您需要使用指定的 disabled 选项来初始化 resizable。它在 documentation 中.

$( ".selector" ).resizable({ disabled: true });

关于javascript - Uncaught Error : cannot call methods on resizable prior to initialization; attempted to call method 'option' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19451232/

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