如何使一个函数去追求一个元素

时间:2016-07-28 18:55:53

标签: javascript jquery

JavaScript中,您经常会看到代表document.getElementById("element").someFunction();$("element").someFunction();而不是someFunction($("element"));的功能。其中someFunction(element)看起来有点像下面的代码。

someFunction(element) {
    //element.doSomething();
}

我的问题是你如何创建一个函数来操作它所附加的元素,而不是操纵作为参数传递的元素?

2 个答案:

答案 0 :(得分:7)

您可以使用prototype

来实现它
// `getElementById` returns a `Element` object so extend it's prototype
Element.prototype.someFunction = function(){
   // this.somethig
}

document.getElementById("element").someFunction();

Element.prototype.someFunction = function() {
  console.log(this.value)
}

document.getElementById("element").someFunction();
<input value="abc" id="element" />

注意:It's really bad practice to extend prototype of native object

答案 1 :(得分:2)

您正在寻找prototypes

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/prototype

element.prototype.someFunction = function(){
  this.doSomething(); // this refers to element
}