摘要: 在 ES6 中,as 关键字用于修改变量名 #配合 export 使用 有时候我们不想暴露模块中的变量名称,就可以给模块取一个更加语义化的名称 let a = function (name) { console.log(name) } export { a as printName } #配合 im 阅读全文
posted @ 2022-06-29 21:29 如是。 阅读(1381) 评论(0) 推荐(0)
摘要: 发现问题 在开发页面搜索框的时候可以发现 input 和 button 之间存在一道缝隙,且高度不能对齐这两个问题。 点击查看 HTML 代码 <div class="search"> <input type="text" /> <button>搜索</button> </div> 点击查看 CSS 阅读全文
posted @ 2022-06-29 20:41 如是。 阅读(164) 评论(0) 推荐(0)