jQuery之工具方法(type、isArray、isFunction、isWindow、noConflict、each、map)

$ .type()、$ .isArray()、 $ .isFunction()、$ .isWindow()

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>温故而知“心”</title>
</head>

<body>
</body>
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script>
  // typeof() 里面的数据是什么类型
  
  // $.type() 里面的数据到底是什么
  console.log( $.type(undefined) )
  console.log( $.type("abc") )
  console.log( $.type(123) )
  console.log( $.type(true) )
  console.log( $.type(function() {}) )
  console.log( $.type(null) )
  console.log( $.type({}) )
  console.log( $.type([1, 2, 3, 4]) )
  console.log( $.type(new Date()) )
  console.log( $.type(new Number) )
  console.log( $.type(new Person()) )
  function Person(){}

  // $.isArray()  判断是不是数组,返回boolean值
  const arrays = [1, 2, 3];
  console.log( $.isArray(arrays) )
  // $.isFunction()  判断是不是方法,返回boolean值
  function fn(){}
  console.log( $.isFunction(fn) )
  // $.isWindow()  判断是不是window,返回boolean值
  console.log( $.isWindow(window) )

  // $.trim()消除空格
  const text = "      1     2    3      ";
  console.log(text)
  console.log( $.trim(text) )
</script>
</html>

$.noConflict()防止冲突

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>温故而知“心”</title>
  <style>
    .demo {
      width: 100px;
      height: 100px;
      background-color: #ff0000;
    }
  </style>
</head>

<body>
  <div class="demo"></div>
</body>
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script>
  // $.noConflict()防止冲突
  const $C = $.noConflict();
  // 变量命名冲突 $
  $C('.demo').css({ backgroundColor: '#0000ff' })
</script>

</html>

$ .each() 、$.map()

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>温故而知“心”</title>
  <style></style>
</head>

<body>
</body>
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script>
  /*
    $.each()是没有ES5的forEach效率高的
  */
  const arr = [1, 2, 3];
  $.each(arr, function (index, ele) {
    console.log(index, ele)
  })

  // ES5的map是根据JQuery的$.map()演变来的
  const cont = $.map(arr, function (index, ele) {
    return ele * index
  })
  console.log(`cont`, cont)
</script>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值