codecamp

JavaScript API列表

Array

  • Array.prototype.push()
  • Array.prototype.slice()

console

  • console.log()

Date

  • Date.now()
  • Date.parse()
  • Date.prototype.getDate()
  • Date.prototype.getDay()
  • Date.prototype.getFullYear()
  • Date.prototype.getHours()
  • Date.prototype.getMiliseconds()
  • Date.prototype.getMinutes()
  • Date.prototype.getMonth()
  • Date.prototype.getSeconds()
  • Date.prototype.toDateString()
  • Date.prototype.toLocaleDateString()
  • Date.prototype.toLocaleString()
  • Date.prototype.toString()
  • Date.prototype.setDate()
  • Date.prototype.setFullYear()
  • Date.prototype.setHours()
  • Date.prototype.setMilliseconds()
  • Date.prototype.setMinutes()
  • Date.prototype.setMonth()
  • Date.prototype.setSeconds()
  • Date.prototype.setTime()
  • Date.UTC()

document

  • document.getElementByID()
  • document.getElementsByClassName()
  • document.getElementsByTagName()
  • document.querySelectorAll()

navigator

  • navigator.appName
  • navigator.appVersion
  • navigator.registerProtocolHandler()

Object

  • Object.getOwnPropertyNames()
  • Object.keys()
  • Object.prototype.hasOwnProperty()

String

  • String.prototype.replace()

jQuery

  • jQuery.now()

Node.js

  • child_process.exec()
  • child_process.execFile()
  • process.versions
  • process.arch
  • process.platform
  • util.inherits()
ECMAScript 6 介绍
JavaScript工具库—Underscore.js
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }