摘要:
常用内置对象一览 Math对象 向下取整Math.floor var num=3.14; var result=Math.floor(num); console.log(result);//3 0-1的随机数Math.random var result=Math.random(); console. 阅读全文
摘要:
前言 javaSE的运算符、选择语句、循环语句等都能在js使用,就不详细写在笔记里了 函数声明function function 函数名(形参){} <script> function computed(n,m,op){ switch(op){ case "+": return n+m; break 阅读全文
摘要:
声明变量var var 变量名 = 值; <script> var s = "hello world"; var s1 = "hello",s2 = "world"; console.log(s); console.log(s1); console.log(s2); </script> 变量命名规范 阅读全文
摘要:
概述 JavaScript简称js,用于用户与浏览器行为交互、浏览器与服务器的数据交互 ECMAScript js的版本,是js语言的标准。 例子 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-eq 阅读全文