码迷,mamicode.com
首页 > 其他好文 > 详细

Ake杂货铺

时间:2021-06-28 21:07:38      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ali   bsp   code   fine   line   mdi   fun   对象   amp   

Js得到选中的文字

(function getSelectionText() {
  if (window.getSelection) {
    return window.getSelection().toString();
  } else if (document.selection && document.selection.createRange) {
    return document.selection.createRange().text;
  }

  return ‘请选取文字‘;
})();

 

快速删除文件夹

rmdir /s/q  ‘文件路径’  // eg  rmdir /s/q d:\123\abc 

 

Ele合并对象

//ele 合并对象方法
        function merge(target) {
            for (let i = 1, j = arguments.length; i < j; i++) {
                let source = arguments[i] || {};
                for (let prop in source) {
                    if (source.hasOwnProperty(prop)) {
                        let value = source[prop];
                        if (value !== undefined) {
                            target[prop] = value;
                        }
                    }
                }
            }

            return target;
        };          

 

 

//ele 合并对象方法

        function merge(target) {

            // debugger

            for (let i = 1j = arguments.lengthi < ji++) {

                let source = arguments[i] || {};

                for (let prop in source) {

                    if (source.hasOwnProperty(prop)) {

                        let value = source[prop];

                        if (value !== undefined) {

                            target[prop] = value;

                        }

                    }

                }

            }

 

            return target;

        };

Ake杂货铺

标签:ali   bsp   code   fine   line   mdi   fun   对象   amp   

原文地址:https://www.cnblogs.com/akei/p/14944499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!