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.

Tabs

新しいタブを開く

 

新しいタブを開くのは簡単で、単にjetpack.tabsopenメソッドをURLを含む文字列と一緒に呼ぶだけです。

jetpack.tabs.open("https://www.mynewtab.com");

タブのドキュメントとウィンドウオブジェクトにアクセスする

 

contentDocumentcontentWindowオブジェクトはドキュメントとウィンドウを表すオブジェクトです。これらは現在表示中のタブのプロパティとしてアクセスすることができます。

タブのcontentWindowの中にあるjavascriptのオブジェクトに直接アクセスできないという事に気をつけて下さい。これにアクセスする場合は必ず、 jetpack.tabs.focused.contentWindow.wrappedJSObjectオブジェクトを通してアクセスして下さい.

var doc = jetpack.tabs.focused.contentDocument; /*Focused tab's equivalent Document object*/ 
var win = jetpack.tabs.focused.contentWindow; /*Focused tab's equivalent Window object*/
var tabJsUniverse = jetpack.tabs.focused.contentWindow.wrappedJSObject; /*Tab's js object*/

基礎 に詳しい情報があります.

ドキュメントのタグと貢献者

 このページの貢献者: teoli, hiroyuki
 最終更新者: teoli,