摘要: //IIFE(立即调用函数表达式) let asd = (function(){ let a = 1; return a; })(); console.log(asd); IIFE( 立即调用函数表达式)是一个在定义时就会立即执行的 JavaScript 函数。 (function () { sta 阅读全文
posted @ 2021-12-13 10:31 Mr、DIVE 阅读(46) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <style type="text/css"> h1 {text-transform: uppercase} p.uppercase {text-transform: uppercase} p.lowercase {text-transform: lowercase} p 阅读全文
posted @ 2021-12-13 10:24 Mr、DIVE 阅读(154) 评论(0) 推荐(0) 编辑