html,body{ height: 100%; margin: 0; padding: 0; box-sizing: border-box; } .main{ width: 300px; margin: 80px auto; } .auto-complate input{ width: 20…
var p = {} p.name = 'wangBaoQiang' p.age = 30 p.show = function(){ console.log('你们好') } // 那怎样才能删除age属性呢? // console.dir(p) // p.age = undefined // console.dir(p) // p.age…
// 对象:一个容器可以包含数据和功能 // 数据:通过对象的属性可以获取或设置数据 // 功能:通过对象的方法可以使用对象的提供的功能 var obj = new Object() var a = {} obj.name = 'wangBaoQaing' // 创建对象 为对象添加属性 function a…
var t = new Date(2016,4,15,12) // 月份从0开始的 console.log(t.getTime()) // UTC根据世界时返回 1970 年 1 月 1 日 到指定时间的毫秒数 var t1 = new Date(9999,11,31,24,0,0) console.log(t1.getTime()) var no…
var news = [ '三大运营商:9月1日起取消手机国内漫游费', '华为上半年销售收入2831亿元 同比增长15%', '雪铁龙发动机质保期内异响不处理?车主不满自费维修', '四川强降雨1700余人受灾 1人因泥石流掩埋死亡', '麻雀急救同伴视频热传 专家:应该在争斗其中一只诈死', …
var arr = ['1','2','3','4','5','6','7','8'] arr.forEach(function(element,index,arr){ // forEach 让数组中每一项都执行给定的函数 // 这个函数接受三个参数 // curren…
var sec = document.createElement('section') sec.style.width = '300px'; sec.style.height = '300px'; sec.style.position = 'relative' sec.style.left = '200px' sec.style.top = '20…
var arr = [6,8,1,5,7,0,9] function bubbleSort(arr){ var len = arr.length; for (var i = 0; i < len; i++){ …
<div>1</div> <div>2</div> <div>3</div> <div>4</div> var array = new Array(4) array.push(1) array.push(4) array.push(3) array.pu…
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()) // 把对象的值转化为数字 如…