0

我正在研究 Mozilla javascript 的实现。我发现很难获得书签搜索侧栏文本框的 id 并显示它的内容。是我要遵循的链接。

这是我的代码:

<hbox id="sidebar-search-container" align="center">
    <label id="sidebar-search-label"
           value="&search.label;" accesskey="&search.accesskey;" control="search-box"/>
    <textbox id="search-box" flex="1" type="search" class="compact"
             aria-controls="bookmarks-view"
             oncommand="searchBookmarks(this.value);"/>
  </hbox>

我正在尝试使用以下代码获取价值:

window.document.getElementById("search-box").value

欢迎任何帮助或建议。

4

1 回答 1

1

您可以通过以下方式获取书签侧边栏的搜索文本框 ID。

var sidebar_text_box = window.sidebar.document.getElementById("search-box");
alert(sidebar_text_box.value);

享受 :)

于 2013-10-15T14:20:57.887 回答