摘要: 阅读全文
posted @ 2019-04-06 23:49 高家三少爷 阅读(98) 评论(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 高家三少爷 阅读(97) 评论(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 高家三少爷 阅读(117) 评论(0) 推荐(0)