blob: cb761610f6742be5d49d03f7a98ca73e42fef51c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
---
title: URL.pathname
slug: Web/API/URL/pathname
tags:
- API
- URL
- pathname
translation_of: Web/API/URL/pathname
---
<div>{{ApiRef("URL API")}}</div>
<p>{{domxref("URL")}}接口的<strong><code>pathname</code></strong>属性是一个{{domxref("USVString")}},包含一个初始 <code>'/'</code> 和URL的路径(如果没有路径,则为空字符串)</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox"><em>string</em> = <em>object</em>.pathname;
<em>object</em>.pathname = <em>string</em>;
</pre>
<h3 id="值">值</h3>
<p>一个{{domxref("USVString")}}.</p>
<h2 id="例子">例子</h2>
<pre class="brush: js">var url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname');
var result = url.pathname; // Returns:"/en-US/docs/Web/API/URL/pathname"
</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">说明</th>
</tr>
<tr>
<td>{{SpecName('URL', '#dom-url-pathname', 'URL.pathname')}}</td>
<td>{{Spec2('URL')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div class="hidden">该页面上的兼容性表是由结构化数据生成的。如果您想对数据做出贡献,请查看https://github.com/mdn/browser-compat-data,并向我们发送一个pull request。</div>
<p>{{Compat("api.URL.pathname")}}</p>
<h2 id="参考">参考</h2>
<ul>
<li>它所属的{{domxref("URL")}}接口。</li>
</ul>
|