diff options
-rw-r--r-- | files/zh-cn/web/api/url/searchparams/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/url/searchparams/index.html b/files/zh-cn/web/api/url/searchparams/index.html index f782dc15c4..a3ac04aded 100644 --- a/files/zh-cn/web/api/url/searchparams/index.html +++ b/files/zh-cn/web/api/url/searchparams/index.html @@ -26,7 +26,7 @@ translation_of: Web/API/URL/searchParams <h2 id="例子">例子</h2> -<p>如果你的 URL 是 <code>https://example.com/?name=Jonathan&age=18</code> ,你可以这样解析 URL,然后得到 <code>name</code> 和 <code>age</code> 的值。</p> +<p>如果你的 URL 是 <code>https://example.com/?name=Jonathan%20Smith&age=18</code> ,你可以这样解析 URL,然后得到 <code>name</code> 和 <code>age</code> 的值。</p> <pre class="brush: js notranslate">let params = (new URL(document.location)).searchParams; let name = params.get('name'); // is the string "Jonathan Smith". |