Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. Web API
  3. XMLHttpRequest
  4. XMLHttpRequest.responseURL

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

XMLHttpRequest.responseURL

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2016年8月⁩.

只读属性XMLHttpRequest.responseURL 返回响应的序列化 URL,如果 URL 为空则返回空字符串。如果 URL 有锚点,则位于 URL # 后面的内容会被删除。如果 URL 有重定向,responseURL 的值会是经过多次重定向后的最终 URL。

实例

js
var xhr = new XMLHttpRequest();xhr.open("GET", "http://example.com/test", true);xhr.onload = function () {  console.log(xhr.responseURL); // http://example.com/test};xhr.send(null);

规范

Specification
XMLHttpRequest
# the-responseurl-attribute

浏览器兼容性

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp