gpt4 book ai didi

javascript - Javascript/JQuery 中 $H 的含义是什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:06:08 25 4
gpt4 key购买 nike

This jsfiddle.net example包括$H:

new Request.JSON({
url: '/echo/json/',
data: {
json: JSON.encode({
text: 'some text',
array: [1, 2, 'three'],
object: {
par1: 'another text',
par2: [3, 2, 'one'],
par3: {}
}
}),
delay: 3
},
onSuccess: function(response) {
show_response(response, $('post'));
}
}).send();

show_response = function(obj, result) {
$H(obj).each(function(v, k) {
new Element('li', {
text: k + ': ' + v
}).inject(result);
});
result.highlight();
};

我似乎找不到$H 的含义/功能。有人可以详细说明吗?

最佳答案

$H 与 mootools 有关,而不是 jQuery。你找到文档 here (第 67 页)。摘录如下:

$H is a shortcut to initialize an instance of Hash . Usage :
$H(object) Example : var fooHash = $H({foo: 'bar'}); When you’ll use it : This is just a shortcut for new Hash(obj) , which returns an instance of Hash

关于javascript - Javascript/JQuery 中 $H 的含义是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4634510/

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