gpt4 book ai didi

javascript - jQuery.fn - 为什么这不起作用?

转载 作者:行者123 更新时间:2023-11-30 09:09:37 24 4
gpt4 key购买 nike

<分区>

这里有什么问题? (除了有冗余代码)。 $.getJSON 按预期工作。但是 $.postJSON 不工作。我可以通过 Firebug 检查 $.fn 并且确实列出了 postJSON。但是,如果我尝试调用它,则会出现无函数定义错误。

jQuery.fn.getJSON = function(path, opts){
this.extend(opts, {
url: path,
dataType: 'json',
type: 'GET'
});

var invalid = opts.error;
opts.error = function(xhr, status){
var data = $.httpData(xhr, 'json');
if (invalid)
invalid(data);
}

this.ajax(opts);
};

jQuery.fn.postJSON = function(path, data, opts) {
this.extend(opts, {
url: path,
data: data,
dataType: 'json',
type: 'POST'
});

var invalid = opts.error;
opts.error = function(xhr, status){
var data = $.httpData(xhr, 'json');
if (invalid)
invalid(data);
}

this.ajax(opts);
};

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