zoukankan      html  css  js  c++  java
  • 最近项目中用到的方法

    1.获取小数点后的字符串(情景时需要获取文件类型 你好.png/新生手册.doc)

    var filename = '新生.doc'
    filename.substring(filename.lastIndexOf('.') + 1)
    或者
    filename.split('.')[1]

    2.判断IOS还是Android

    appSource () {
          const u = navigator.userAgent
          const isiOS = !!u.match(/(i[^;]+;( U;)? CPU.+Mac OS X/)
          const isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1
          if (isiOS) {
            // ios
            this.isAndroidType = false
          } else if (isAndroid) {
            // andriod
            this.isAndroidType = true
          }
        },

    3.删除某个数组中指定的对象(filter,实现去掉name是小王的对象)

    var arr = [{name:'小李',age:'17'},{name:'小王',age:'17'},{name:'小陈',age:'18'}]
        arr = arr.filter(function(item){
            console.log(item)
            return item.name != '小王'
        })

     4.获取接口的文档,立马给每个对象添加checked字段来实现是否选择的判断

    for (let i = 0; i < this.fileList.length; i++) {
       //fileList是获取的数组对象,给每个对象添加checked,值为false
        this.$set(this.fileList[i], 'checked', false)
    }

    5.H5中移动端禁止长按复制文本功能,很多手机都有这种功能,会造成用户体验不好,所以干脆全部禁止.在App.vue里面添加,input和textarea一定要记着加,不然这两个标签到时候输入不了

    *{
      -webkit-touch-callout:none;  /*系统默认菜单被禁用*/
      -webkit-user-select:none; /*webkit浏览器*/
      -khtml-user-select:none; /*早期浏览器*/
      -moz-user-select:none; /*火狐*/
      -ms-user-select:none;  /*IE10*/
      user-select:none;
    }
    input,textarea {
      -webkit-user-select: auto !important;
    }

     

  • 相关阅读:
    图像分割之Dense Prediction with Attentive Feature Aggregation
    与中文对齐的英文等宽字体
    管家订菜与Scrum流程
    说说自己在2014年的阅读思路
    Hello World
    Bootstrap实现轮播
    普通Apache的安装与卸载
    Python中OS模块
    Python中文件读写
    Python装饰器
  • 原文地址:https://www.cnblogs.com/chorkiu/p/13031230.html
Copyright © 2011-2022 走看看