Movatterモバイル変換


[0]ホーム

URL:


  1. Mozilla
  2. Add-ons
  3. Browser extensions
  4. JavaScript APIs
  5. tabs
  6. tabs.reload()

tabs.reload()

Reload a tab, optionally bypassing the local web cache.

This is an asynchronous function that returns aPromise.

Syntax

js
let reloading = browser.tabs.reload(  tabId,            // optional integer  reloadProperties  // optional object)

Parameters

tabIdOptional

integer. The ID of the tab to reload. Defaults to the selected tab of the current window.

reloadPropertiesOptional

An object with the following properties:

bypassCacheOptional

boolean. Bypass the local web cache. Default isfalse.

Return value

APromise that will be fulfilled with no arguments when the tab has been reloaded. If any error occurs, the promise will be rejected with an error message.

Examples

Reload the active tab of the current window:

js
browser.tabs.reload();

Reload the active tab of the current window, bypassing the cache:

js
browser.tabs.reload({ bypassCache: true });

Reload the tab whose ID is 2, bypassing the cache and calling a callback when done:

js
function onReloaded() {  console.log(`Reloaded`);}function onError(error) {  console.log(`Error: ${error}`);}let reloading = browser.tabs.reload(2, { bypassCache: true });reloading.then(onReloaded, onError);

Example extensions

Browser compatibility

Note:This API is based on Chromium'schrome.tabs API. This documentation is derived fromtabs.json in the Chromium code.

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp