如此简单的例子
//example
var el = document.getElementById("test");
el.classList.add("my-class");
//my function
var myFunction = function(){//code goes here};
el.myFunction();
//and can we take it further by adding a method to it like classList does
el.myFunction().myMethod();
我知道我可能没有在这里使用正确的术语,因为方法是类的一个功能,这意味着myFunction()
必须是一个类。如果像这样的事情是可能的,我只是感到困惑。反正...
如何创建一个可以链接到这样的元素的函数?
感谢您的帮助