console.log(Math.ceil(-2.1)) // Math.ceil() 天花板 向上取整 负数向上取整时相当于把小数部分扔掉 // 不存在四舍五入 返回的是数字 console.log(typeof Math.ceil(2.1)) console.log(Math.floor(2.1)) // floor 向下取整 负数向下取整时会…
var n = 3 var n1 = new Number(3) console.log(n) console.log(n1) var n2 = new Number('2016') console.log(n2) var n3 = new Number(true) console.log(n3.valueOf()) // 把对象的值转化为数字 如…
var str = String('今天天气好热') var str1 = new String('明天天气还热吗') var str2 = '你给我"aa"滚出去' var json = {'name':'22','age':3} var json2 = "{'name':'22','age':3}" console.log(json) cons…
console.log(true) console.log(!true) var a = 1,b = 2 console.log(!!(a + b)) var b = new Boolean('false') console.log(b) // b是一个布尔对象 而不是一个值 // b是一个包含一个true值的对象 可以将b当为一个盒子 // 当作…
<body> <div>这是DIV</div> <script> var a = '123' a +='456' // alert(a) // console.log('a:%s',a) // consol…
关于控制台常用的console <script> console.log('控制台输出日志') console.error('控制台输出错误') console.warn('控制台输出警告') console.debug('控制台输出测试') console.info('控制台输出信息') …
<body> <button onclick="alert(location.href)">弹出当前地址</button> <button onclick="location.href = 'https://www.baidu.com'">href</button> …
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> …
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> …
写三个页面实现点击按钮前进后退等 页面一: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in…
<body> <!--URL Uniform Resource Locator,统一资源定位符--> <a href="https://www.baidu.com/s?word=%E7%99%BE%E5%BA%A6%E7%99%BE%E7%A7%91&tn=5000…