摘要: 阅读全文
posted @ 2019-04-06 23:49 努力的小高 阅读(96) 评论(0) 推荐(0) 编辑
摘要: var str='http://www.baidu.com'; if(str.startsWith('http://www')){ // 以什么开头 alert('是网址') } if(str.endsWith('.com')){ alert('是com网址') } 阅读全文
posted @ 2019-04-06 23:36 努力的小高 阅读(89) 评论(0) 推荐(0) 编辑
摘要: function show(a,b,...args){ console.log(a) console.log(b) console.log(args) } show(10,20,30,30,36) 阅读全文
posted @ 2019-04-06 23:00 努力的小高 阅读(110) 评论(0) 推荐(0) 编辑