gpt4 book ai didi

javascript - jQuery 之类的自定义函数

转载 作者:行者123 更新时间:2023-11-29 15:03:43 25 4
gpt4 key购买 nike

我一直想知道如何创建像 jQuery 这样的函数。例如:$(ID).function()

其中 ID 是 HTML 元素的 ID,$ 是返回元素“ID”的 document.getElementById 引用的函数,函数是自定义 javascript 函数。

我正在创建一个实现某些功能的小库。我想在不使用 jQuery 的情况下使用该语法。

现在,我的问题是:我该如何实现它?允许这样做的技术的名称是什么?

编辑:

我想做的是:

HTMLElement.prototype.alertMe = function() {alert(this.value);}

然后,当我调用 document.getElementById('html_input_id').alertMe() 时,它必须显示带有输入值的警告框。但是 HTMLElement.prototype 在 IE 中不起作用。

最佳答案

$ = function(id) {
return document.getElementById(id);
}

关于javascript - jQuery 之类的自定义函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6072395/

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