diff options
Diffstat (limited to 'files/ja/web/api/idbdatabase/objectstorenames/index.html')
-rw-r--r-- | files/ja/web/api/idbdatabase/objectstorenames/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ja/web/api/idbdatabase/objectstorenames/index.html b/files/ja/web/api/idbdatabase/objectstorenames/index.html index 15dc43dddc..e0836a79b9 100644 --- a/files/ja/web/api/idbdatabase/objectstorenames/index.html +++ b/files/ja/web/api/idbdatabase/objectstorenames/index.html @@ -12,12 +12,12 @@ translation_of: Web/API/IDBDatabase/objectStoreNames --- <p>{{ APIRef("IDBDatabase") }}</p> <div> - <p>{{domxref("IDBDatabase")}}インターフェイスの<code>objectStoreNames</code>プロパティは、現在接続しているデータベースの<a href="https://developer.mozilla.org/en-US/docs/IndexedDB#gloss_object_store">object stores</a>名のリストを含む{{ domxref("DOMStringList") }}です。</p> + <p>{{domxref("IDBDatabase")}}インターフェイスの<code>objectStoreNames</code>プロパティは、現在接続しているデータベースの<a href="/ja/docs/IndexedDB#gloss_object_store">object stores</a>名のリストを含む{{ domxref("DOMStringList") }}です。</p> </div> <h2 id="構文">構文</h2> <pre class="brush: js">db.objectStoreNames</pre> <h3 id="値">値</h3> -<p>現在接続しているデータベースの<a href="https://developer.mozilla.org/en-US/docs/IndexedDB#gloss_object_store">object stores</a>名のリストを含む{{ domxref("DOMStringList") }}。</p> +<p>現在接続しているデータベースの<a href="/ja/docs/IndexedDB#gloss_object_store">object stores</a>名のリストを含む{{ domxref("DOMStringList") }}。</p> <h2 id="例"><span style="line-height: 1.5;">例</span></h2> <pre class="brush: js;highlight:[17]">// Let us open our database var DBOpenRequest = window.indexedDB.open("toDoList", 4); @@ -58,7 +58,7 @@ DBOpenRequest.onsuccess = function(event) { <h2 id="関連情報">関連情報</h2> <ul> - <li><a href="/en-US/docs/Web/API/IndexedDB_API/Using_IndexedDB">Using IndexedDB</a></li> + <li><a href="/ja/docs/Web/API/IndexedDB_API/Using_IndexedDB">Using IndexedDB</a></li> <li>Starting transactions: {{domxref("IDBDatabase")}}</li> <li>Using transactions: {{domxref("IDBTransaction")}}</li> <li>Setting a range of keys: {{domxref("IDBKeyRange")}}</li> |