在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
安装 jquery
cnpm install jquery --save
不以 cdn 的方式引入,而是以模块化的方式引入 jquery
index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script src="./page.ts"></script> </body> </html>
page.ts import $ from 'jquery'; $(function () { $('body').html('<div>121212</div>'); new $.fn.init() })
jquery.d.ts // es6 模块化 declare module 'jquery' { interface JqueryInstance { html: (html: string) => JqueryInstance } // 混合类型 function $(readyFunc: () => void): void; function $(selector: string): JqueryInstance; namespace $ { // $.fn.init namespace fn{ class init{} } } export = $; }
|
请发表评论