随笔分类 - ts
摘要:1, HTMLElement 和 Element <div id="divClick"></div> const docu = document.getElementById('divClick'); const docu1 = document.querySelector('#divClick')
阅读全文
摘要:declare就是告诉TS编译器你担保这些变量和模块存在,并声明了相应类型,编译的时候不需要提示错误 1.declare 如同 interface、type 关键词一样,在编译成 js 之后是会被删除的。 declare 声明的是一个变量 // 例子1: #index.html <script> v
阅读全文