不要过分依靠JQuery(三)

在这里先拜个年,祝人人新年快乐,阖家幸福,步步高升!

回归正题,在不要过分依靠JQuery(一)不要过分依靠JQuery(二)两篇文章中已枚举了大批的运用原生JavaScript替换JQuery的例子,在本文中将继承枚举!

1、表单

猎取核心

$('#test').focus();  
$('#test').focus(function(){});

var t = document.getElementById('test');
function addEvent(dom, type, handle, capture) {       
  if(dom.addEventListener) {       
    dom.addEventListener(type, handle, capture);        
  } else if(dom.attachEvent) {       
    dom.attachEvent("on" + type, handle);       
  } 
}; 
function focus(elem, fn) {
  if(fn && typeof fn === 'function') {
    addEvent(elem, 'focus', fn);
  } else {
    elem.focus();
  }
}

focus(t, function(){});

落空核心

$('#test').blur();
$('#test').blur(function(){});
   
function blur(elem, fn) {    
  if(fn && typeof fn === 'function') {    
    addEvent(elem, 'blur', fn);    
  } else {    
    elem.blur();    
  }   
}    

blur(t, function(){});

及时监控

$('#test').on('input propertychange', fn);

function inputChange(dom, fn, capture) {   
  capture = capture || false;   
  addEvent(dom, 'input', fn, capture);
  addEvent(dom, 'propertychange', fn, capture);   
}

inputChange(t, function(){});

2、推断范例

推断范例

$.type(obj);

Object.prototype.toString.call(obj).replace(/^\[object (.+)\]$/, '$1').toLowerCase();

推断是不是为一个函数

$.isFunction(fn)

function isFunction(fn){
  return typeof fn === 'function';
}

推断是不是为数字

$.isNumeric(num);

function isNumber(num) {
  var type = typeof num;
  return ( type === 'number' || type === 'string') && 
      !isNaN( num - parseFloat( num ) );
}

推断是不是为数组

$.isArray(obj);

function isArray(obj) {
  if( Array.isArray ) {
    return Array.isArray(obj);
  } else {
    return Object.prototype.toString.call(obj) === '[object Array]';
  }
}

3、时候

猎取当前时候

$.now()

new Date().getTime();

/* 更简朴 */
+new Date();

4、转变上下文(this)

$.proxy(fn, context);

fn.bind(context);

5、空函数

建立一个空函数

var fn = $.noop();

var fn = function() {}

6、数组

兼并数组

$.merge(arr1, arr2)

function (arr1, arr2) {
  return arr1.concat(arr2);
}

类数组对象转换成数组

var divs = document.querySelectorAll('div');

var arr = $.makeArray(divs);

var arr = Array.prototype.slice.call(divs);

// ES6 
var arr = Array.from(divs)

7、Iframe

猎取iframe的document

$('#iframe').contents();

var iframe = document.getElementById('iframe');
iframe.contentDocument;

8、元素包括关联

搜检一个DOM元素是另一个DOM元素的子女

$.contains(parent, child);

function contains(root, el) { 
  /* Chrome / Firefox */  
  if (root.compareDocumentPosition) {  
    return root === el || !!(root.compareDocumentPosition(el) & 16);  
  } 
  /* IE */
  if (root.contains && el.nodeType === 1){   
    return root.contains(el) && root !== el;   
  }   
  while ((el = el.parentNode)) {  
    if (el === root) { return true; }  
    return false;   
  }
}

9、scroll

设置/猎取window转动位置

/*猎取*/
$(window).scrollTop();

(document.documentElement && document.documentElement.scrollTop) || document.body.scrollTop

/*设置*/
$(window).scrollTop(10);

(document.documentElement && document.documentElement.scrollTop = 10) || document.body.scrollTop = 10;

设置某个元素转动位置

$('#test').scrollTop(10);

var t = document.getElementById('test');

t.scrollTop = 10;

注重:别加单元!

10、节点

猎取元素的近来的先人定位(position非static)元素

$('#test').offsetParent();

var t = document.getElementById('test');
t.offsetParent;

到这里,《不要过分依靠JQuery》系列就告一段落了!

原文链接:不要过分依靠JQuery(三)

若有毛病或发起,迎接在下方批评区留言!

    原文作者:TGCode
    原文地址: https://segmentfault.com/a/1190000008225544
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞