--- title: 'Location: toString()' slug: Web/API/Location/toString translation_of: Web/API/Location/toString ---

{{ApiRef("Location")}}

toString(){{domxref("Location")}}接口stringifier方法返回包含整个URL的{{domxref("USVString")}}}。它是{{domxref("Location.href")}}的只读版本。

句法

string = object.toString();

例子

// Let's imagine an <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/Location/toString"> element is in the document
var anchor = document.getElementById("myAnchor");
var result = anchor.toString(); // Returns: 'https://developer.mozilla.org/en-US/docs/Location/toString'

技术指标

规范 状态 评论
{{SpecName("HTML WHATWG","#dom-location-href")}} {{Spec2("HTML WHATWG")}}

浏览器兼容性

{{Compat("api.Location.toString")}}