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

网上面试资料整理

时间:2018-11-20 11:39:31      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:rip   来源   原创文章   地址   ntb   this   round   获取   最大   

整理网上的面试题

一、去空格

去除所有空格: str = str.replace(/\s*/g,"");      

去除两头空格: str = str.replace(/^\s*|\s*$/g,"");

去除左空格: str = str.replace( /^\s*/, “”);

去除右空格: str = str.replace(/(\s*$)/g, "");
--------------------- 
作者:wdlhao 
来源:CSDN 
原文:https://blog.csdn.net/wdlhao/article/details/79079660 
版权声明:本文为博主原创文章,转载请附上博文链接!

 

二、获取url中传入的参数

<script>
        // 如何获取浏览器URL中查询字符串中的参数?
        // 测试地址为:http://www.runoob.com/jquery/misc-trim.html?channelid=12333&name=xiaoming&age=23
        
        function showWindowHref(){
            // var sHref = window.location.href;
            // 无法直接获取测试地址,直接以下面的字符串操作
            var sHref= http://www.runoob.com/jquery/misc-trim.html?channelid=12333&name=xiaoming&age=23;
            var args = sHref.split(?);
            // console.log(args)
            var arrs = args[1].split(&)
            // console.log(arrs)
            var obj = {};
            for(let i = 0 , len = arrs.length ; i < len ; i++){
                var arr = arrs[i].split(=)
                console.log(arr)
                obj[arr[0]] = arr[1];
            }
            return obj;
        }

        showWindowHref()
        /* 
            (2) ["channelid", "12333"]
            (2) ["name", "xiaoming"]
            (2) ["age", "23;"]
        */ 

    </script>
--------------------- 
作者:wdlhao 
来源:CSDN 
原文:https://blog.csdn.net/wdlhao/article/details/79079660 
版权声明:本文为博主原创文章,转载请附上博文链接!
 

 

三、this的应用

  1、普通函数,构造函数,箭头函数中this指向

 

<body>
<input type="button" id="text" value="点击一下" />
</body>

 

<script>
// this的指向问题 // 普通函数,谁调用指向谁 function fn(){ console.log(this); } fn(); //Window // 构造函数,指向实例化的对象 function Fn(){ console.log(this); } new Fn(); //Fn {} // // 箭头函数 document.onclick = function(){ console.log(this) } //#document document.onclick = ()=>{ console.log(this) } //Window var btn = document.getElementById("text"); btn.onclick = function() { alert(this.value); //此处的this是按钮元素 }
</script>

   2、apply 和 call 求数组最大值

    // 数组求最大值
        var arr1 = [55,66,33,45,61,99,38]
            // apply
        console.log(Math.max.apply(this,arr1))    //99
            // call
        console.log(Math.max.call(this,arr1))    //NAN
        console.log(Math.max.call(this,55,66,33,45,61,99,38))    //99

  总结:

1、构造函数的this指向实例化后的那个对象
2、普通函数的this指向调用该函数的那个对象
3、箭头函数的this指向创建时的那个对象,而不是引用时的那个对象

4、通过apply,call可以求数组中的最大值
    语法如下:
        Math.max.apply(this,arr)

 

 

 

 

 

 

 

如有问题,请与本人联系,立即删除

网上面试资料整理

标签:rip   来源   原创文章   地址   ntb   this   round   获取   最大   

原文地址:https://www.cnblogs.com/-roc/p/9987293.html

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