Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.34 KB

File metadata and controls

54 lines (35 loc) · 1.34 KB
title short-title slug l10n
URLSearchParams: toString() メソッド
toString()
Web/API/URLSearchParams/toString
sourceCommit
0c8a320b035cf625c1df67713a94ead2e7f3aec6

{{ApiRef("URL API")}}

toString() は {{domxref("URLSearchParams")}} インターフェイスのメソッドで、URL での使用に適したクエリー文字列を返します。

Note

このメソッドは、疑問符のないクエリー文字列を返します。これは、それを含む window.location.search とは異なります。

{{availableinworkers}}

構文

toString()

引数

なし。

返値

疑問符を除いた文字列です。(検索パラメーターが設定されていない場合は空文字列を返します。)

const url = new URL("https://example.com?foo=1&bar=2");
const params = new URLSearchParams(url.search);

// 2番目の foo パラメーターの追加
params.append("foo", 4);
console.log(params.toString()); // 'foo=1&bar=2&foo=4' と表示

仕様書

{{Specifications}}

ブラウザーの互換性

{{Compat}}

関連項目