Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

文章标签:API

  1. 1
  2. 2

找到 105 篇文档

  • DOM/Using_fullscreen_mode Fullscreen API 使 Web 站点内容能够以用户屏幕尺寸大小的界面进行显示. 本份文档能够让您了解如何使用该 API.
  • Glossary/IndexedDB IndexedDB 是一个用于在浏览器中储存较大数据结构的 Web API , 并提供索引功能以实现高性能查找. 像其他基于 SQL 的 关系型数据库管理系统 (RDBMS) 一样, ...
  • Mozilla/B2G_OS/Platform/Settings_list Firefox OS 提供了许多设置项,用于配置设备以及内嵌的功能。这些设置项可以由
  • Mozilla/Marketplace/Marketplace_APIs Links to the main references covering Mozilla's Firefox Marketplace APIs, with which you can ...
  • Web/API/AbstractWorker AbstractWorker 接口为所有的worker类提供了虚方法及虚属性使其成为 Worker 或者 SharedWorker .
  • Web/API/AbstractWorker/onerror AbstractWorker 接口的 onerror 特性是一个事件句柄,在 Worker 的 error 事件触发并冒泡时执行。
  • Web/API/AudioContext/createBufferSource 一个 AudioBufferSourceNode 对象.
  • Web/API/AudioContext/decodeAudioData 这是从音频轨道创建用于web audio API音频源的首选方法。
  • Web/API/Battery_Status_API Battery Status API, 更多时候被称之为 Battery API , ...
  • Web/API/Blob Blob 对象是包含有只读原始数据的类文件对象。 Blob 对象中的数据并不一定得是JavaScript 中的原生形式。 File 接口基于 Blob ,继承了 Blob ...
  • Web/API/Body The Body mixin of the Fetch API represents the body of the response/request, allowing you to ...
  • Web/API/Cache The Cache interface provides a storage mechanism for Request / Response object pairs that are ...
  • Web/API/CanvasRenderingContext2D/drawImage CanvasRenderingContext2D .drawImage() 是 Canvas 2D API 中的方法,它提供了多种方式来在Canvas上绘制图像。
  • Web/API/CloseEvent CloseEvent 会在连接关闭时发送给使用 WebSockets 的客户端. 它在 WebSocket 对象的 onclose 事件监听器中使用.
  • Web/API/Coordinates The Coordinates interface represents the position and altitude of the device on Earth, as well ...
  • Web/API/CSS_Object_Model The CSS Object Model is a set of APIs allowing to manipulate CSS from JavaScript. It is the ...
  • Web/API/DataTransfer 在进行拖放操作时, DataTransfer 对象用来保存被拖动的数据。它可以保存一项或多项数据、一种或者多种数据类型。关于拖放的更多信息,请参见 Drag and Drop .
  • Web/API/DeviceLightEvent The DeviceLightEvent provides web developers with information from photo sensors or similiar ...
  • Web/API/Document Document 接口代表在浏览器及服务器中加载任意 web 页面,也作为 web 页面内容( DOM tree , 包含如 body 和 table 等 ...
  • Web/API/Document/alinkColor 返回或设置文档体内的活动链接的颜色。mousedown和mouseup事件之间的时间在一个链接是有效的。
  • Web/API/Document/createElement 在一个HTML文档中, Document.createElement()方法用于创建指定的HTML元素,或者, 当指定未定义的元素时, 创建一个 HTMLUnknownElement 。
  • Web/API/Document/createRange 返回一个 Range 对象。
  • Web/API/Document/documentElement Document.documentElement 是一个只读属性,返回文档对象( document )的根 元素 (例如,HTML文档的 html 元素)。
  • Web/API/Document/domConfig 请返回到 DOMConfiguration 查看w.
  • Web/API/Document/execCommand 当文档对象被转换为设计模式的时候(选中,设置contentEditable等),文档对象提供了一个 ...
  • Web/API/Document/getElementById 返回一个匹配特定 ID 的元素.
  • Web/API/Document/getElementsByName 根据给定的 name 返回一个在 (X)HTML document的节点列表集合。
  • Web/API/Document_Object_Model 文档对象模型 ( DOM ) 是 HTML 和 XML 文档的编程接口。它给文档(结构树)提供了一个结构化的表述并且定义了一种方式—程序可以对结构树进行访问,以改变文档的结构,样式和内容。 ...
  • Web/API/Element Element (元素)接口是 Document 的一个对象. 这个接口描述了所有相同种类的元素所普遍具有的方法和属性。 这些继承自 Element ...
  • Web/API/Element/getBoundingClientRect Element.getBoundingClientRect() 方法返回元素的大小及其相对于视口的位置。
  • Web/API/Element/getClientRects Element.getClientRects() 方法返回一个指向客户端中每一个盒子的边界矩形的矩形集合。
  • Web/API/Element/getElementsByTagName Element.getElementsByTagName() 方法返回一个动态的包含所有指定标签名的元素的HTML集合 HTMLCollection ...
  • Web/API/Element/hasAttributeNS hasAttributeNS 返回一个布尔值,指示该元素是否包含有指定的属性(attribute)。
  • Web/API/Element/insertAdjacentHTML insertAdjacentHTML() 将指定的文本解析为 HTML 或 XML,然后将结果节点插入到 DOM ...
  • Web/API/Element/scrollTop 这个 Element.scrollTop 属性可以设置或者获取一个元素距离他容器顶部的像素距离。一个元素的 scrollTop ...
  • Web/API/Event/Event 构造函数 Event() 用于创建一个新的事件对象。
  • Web/API/Event/stopPropagation 阻止当前事件在捕获及冒泡阶段的进一步传播。
  • Web/API/EventListener 当 EventListener 所注册的事件发生的时候,该方法会被调用。
  • Web/API/EventTarget/addEventListener EventTarget.addEventListener() 方法将指定的事件监听器注册到 EventTarget 上,当该对象触发指定的事件时,指定的回调函数就会被执行。 ...
  • Web/API/EventTarget/removeEventListener 删除使用 EventTarget.addEventListener() 方法添加的事件
  • Web/API/FileRequest 这个 FileRequest 接口继承自 DOMRequest 接口,用来提供一些 LockedFile 对象需要的额外的必要的属性。
  • Web/API/FormData/删除 delete() 方法 会从 FormData 对象中删除指定 key 和它对应的 value(s)。
  • Web/API/Geolocation/getCurrentPosition Geolocation.getCurrentPosition() 方法用来获取设备当前位置。
  • Web/API/GlobalEventHandlers/onclick onclick 属性返回当前元素的 click 事件句柄代码。
  • Web/API/GlobalEventHandlers/onsubmit window 对象 submit 事件的事件句柄.
  • Web/API/GlobalFetch 当发生网络错误时, fetch() 的promise对象会返回一个 TypeError ...
  • Web/API/HTMLButtonElement HTMLButtonElement 接口提供操作button元素 (除了 button 对象,这个接口对继承了该对象的元素也有效)的属性和方法。
  • Web/API/HTMLDialogElement HTMLDialogElement 接口提供操作 dialog 元素的方法.。此接口的方法和属性继承自 HTMLElement 接口。
  • Web/API/HTMLElement/blur blur 方法用来移除当前元素所获得的键盘焦点.
  • Web/API/HTMLElement/offsetLeft HTMLElement.offsetLeft 是一个只读属性,返回当前元素 左上角 相对于 HTMLElement.offsetParent 节点的左边界偏移的像素值。
  • Web/API/HTMLFormElement/action HTMLFormElement.action 这个js语句能够定义一个 form 元素中的action属性
  • Web/API/HTMLHeadElement HTMLHeadElement 接口包含一个文档的描述信息(或者称作元信息)这类对象继承了 HTMLElement 接口的全部属性和方法。
  • Web/API/HTMLInputElement The HTMLInputElement interface provides special properties and methods (beyond the regular ...
  • Web/API/HTMLVideoElement HTMLVideoElement 接口提供了用于操作视频对象的特殊属性和方法。它同时还继承了 HTMLMediaElement 和 HTMLElement 的属性与方法。
  • Web/API/ImageBitmap ImageBitmap 接口表示能够被绘制到 canvas 上的位图图像,具有低延迟的特性。运用 createImageBitmap() 工厂方法模式,它可以从多种源中生成。 ...
  • Web/API/KeyboardEvent KeyboardEvent 对象描述了键盘的交互方式。 每个事件都描述了一个按键(Each event describes a key);事件类型 keydown , keypress 与 ...
  • Web/API/Location Location 接口表示其关联的对象所展示的页面的地址等信息,对该对象的修改会反映到关联的对象上。 Document 和 Window 接口都有一个关联的 Location ,可以分别用 ...
  • Web/API/MediaDevices The MediaDevices interface provides access to connected media input devices like cameras and ...
  • Web/API/Navigator The Navigator interface represents the state and the identity of the user agent. It allows ...
  • Web/API/Navigator/geolocation NavigatorGeolocation.geolocation 只读属性返回一个 Geolocation 对象,通过这个对象可以访问到设备的位置信息。这允许网站或应用根据用户的位置提供个性化结果。
  • Web/API/NavigatorLanguage NavigatorLanguage contains methods and properties related to the language of the navigator.
  • Web/API/NavigatorOnLine The NavigatorOnLine interface contains methods and properties related to the connectivity status ...
  • Web/API/Node/baseURI Node.baseURI 是只读属性,返回节点绝对基 URL 。
  • Web/API/Node/firstChild 只读属性 Node.firstChild 会返回当前节点在 DOM 树中的第一个子节点, 如果没有子节点,则返回 null。
  • Web/API/Node/nodeType 只读属性 Node.nodeType 表示的是该节点的类型。
  • Web/API/Node/normalize Node.normalize() 方法将当前节点和它的后代节点”规范化“(normalized)。在一个"规范化"后的DOM树中,不存在一个空的文本节点,或者两个相邻的文本节点。
  • Web/API/Node/ownerDocument Node.ownerDocument 只读属性会返回当前节点的顶层的 document 对象。
  • Web/API/NodeList NodeList 对象是一个节点的集合,是由 Node.childNodes 和 document.querySelectorAll 返回的.
  • Web/API/notification Notification 对象使用来为用户设置和显示桌面通知。
  • Web/API/Performance/navigation Performance .navigation 这个只读属性返回一个 PerformanceNavigation ...
  • Web/API/PerformanceTiming PerformanceTiming 接口包含了当前页面中与时间相关的信息.
  • Web/API/Position Position 接口表示在给定的时间的相关设备的位置。这个位置,用一个 Coordinates 对象表示,包括设备在地球上的二维位置, 但是也可以包括设备的海拔和速度。
  • Web/API/Position/coords Position.coords 是一个 Coordinates 对象的只读属性 , ...
  • Web/API/Position/timestamp Position.timestamp 是一个 DOMTimeStamp 对象的只读属性,该对象表示 Position 对象所属的日期和时间。精度为毫秒。
  • Web/API/PositionError PositionError 接口表示当定位设备位置时发生错误的原因。
  • Web/API/PushManager The PushManager interface of the Push API provides a way to receive notifications from ...
  • Web/API/Range/getBoundingClientRect Range.getBoundingClientRect() 返回一个 ClientRect ...
  • Web/API/Response Fetch API 的Response接口呈现了对一次请求的响应数据
  • Web/API/Service_Worker_API service ...
  • Web/API/Storage 作为 Web Storage API 的接口, Storage 提供了访问特定域名下的会话存储(session storage)或本地存储(local ...
  • Web/API/SVGAElement SVGAElement 接口提供了对 a 元素的属性的访问,而且还提供了操作该元素的方法。
  • Web/API/SVGCircleElement SVGCircleElement 接口提供了对 circle 元素的属性的访问,而且还提供了操作该元素的方法。
  • Web/API/SVGPathElement SVGPathElement 接口对应于 path 元素。
  • Web/API/URL/createObjectURL URL.createObjectURL() 静态方法会创建一个 DOMString ,它的 URL 表示参数中的对象。这个 URL 的生命周期和创建它的窗口中的 document ...
  • Web/API/URL/revokeObjectURL URL.revokeObjectURL() 静态方法用来释放一个之前通过调用 URL.createObjectURL() 创建的已经存在的 URL 对象。当你结束使用某个 URL ...
  • Web/API/Using_the_Browser_API HTML Browser API 是对 HTML iframe 元素的扩展,允许 web app 用来实现浏览器或浏览器类似的应用。主要涉及到两个方面:
  • Web/API/WebRTC_API WebRTC (Web Real-Time Communications) ...
  • Web/API/WebSocket WebSocket 对象 提供了一组 API, 用于创建和管理 WebSocket 连接, 以及通过连接发送和接收数据.
  • Web/API/WebVR_API WebVR provides support for exposing virtual reality devices — for example head-mounted displays ...
  • Web/API/Web_Storage_API Web Storage API 为浏览器提供了一种比cookies更加直观的方式来存储键值对的机制。
  • Web/API/Web_Workers_API Web Workers 是一种不是在页面线程而是在后台线程中执行脚本的技术。Web ...
  • Web/API/Window/caches 只读属性 Window.caches 返回一个与当前源相关联的 CacheStorage 对象。 这个对象完善了 service worker 所需的功能 ...
  • Web/API/Window/postMessage window.postMessage 是一个安全的跨源通信的方法。一般情况下,当且仅当执行脚本的页面使用相同的协议(通常都是 http)、相同的端口(http默认使用80端口)和相同的 ...
  • Web/API/Window/sessionStorage sessionStorage 属性允许你访问一个 session Storage 对象。它与 localStorage 相似,不同之处在于 localStorage ...
  • Web/API/WindowBase64 WindowBase64 接口定义了两个分别用来进行编码和解码 base64 的工具函数。base64 经常用在 data URI 中。
  • Web/API/WindowEventHandlers WindowEventHandlers mixin describes the event handlers common to several interfaces like Window, ...
  • Web/API/WindowEventHandlers/onstorage WindowEventHandlers.onstorage 属性包含一个在 storage 事件触发时的事件句柄。 当存储域发生改变时会触发事件。(例如: 有新的项被存储)
  • Web/API/WindowTimers WindowTimers 接口包含了四个用来设定和清除定时器的实用方法。
  • Web/API/Worker/Worker Worker() 构造器会构造一个 Worker 对象用于运行指定URL的脚本。这个脚本必须遵循 同源策略 。
  • Web/API/WorkerGlobalScope The WorkerGlobalScope interface of the Web Workers API is an interface representing the scope of ...
  1. 1
  2. 2