随笔分类 - js
摘要:1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta charset="UTF-8"> 6 <title></title> 7 </head> 8 <style type="text/css"> 9 .backgroud { 10 background: gre
阅读全文
摘要:js中const,var,let区别 1.const定义的变量不可以修改,而且必须初始化。 声明的是常量 1 const b = 2;//正确 2 // const b;//错误,必须初始化 3 console.log('函数外const定义b:' + b);//有输出值 4 // b = 5; 5
阅读全文
摘要:text-overflow:ellipsis;用于多行文本的情况下用省略号。。。 overflow:hidden; white-space:nowrap
阅读全文

浙公网安备 33010602011771号