fe-interview icon indicating copy to clipboard operation
fe-interview copied to clipboard

[jQuery] 你有写过jQuery的扩展吗?都有哪些写法?

Open haizhilin2013 opened this issue 6 years ago • 1 comments

[jQuery] 你有写过jQuery的扩展吗?都有哪些写法?

haizhilin2013 avatar Sep 22 '19 12:09 haizhilin2013

✂【回答】

jQuery 的扩展方法有两种方式:

  • jQuery 本身的扩展方法:$.extend
  • jQuery 所选对象的方法:$.fn.extend

🖊【便签】 举个栗子:

// 1. jQuery 本身的扩展方法:$.extend
$.helloWorld = function () {
  console.log("@^0^@,我是 jQuery 本身的扩展方法");
}
// 2. jQuery 所选对象的方法:$.fn.extend
$.fn.helloWorld = function () {
  console.log("@^0^@,我是 jQuery 所选对象的方法");
}

$("div").helloWorld();
$.helloWorld();

♡【关注】 https://blog.csdn.net/Hewes

Hub-ShengQing avatar Aug 02 '22 03:08 Hub-ShengQing