- {string}
获取只读的序列化的 URL 的 origin。
const myURL = new URL('https://example.org/foo/bar?baz');console.log(myURL.origin);// 打印 https://example.org
const idnURL = new URL('https://測試');console.log(idnURL.origin);// 打印 https://xn--g6w251dconsole.log(idnURL.hostname);// 打印 xn--g6w251d
