url.hash 是 url 模块中类 URL 的内置应用程序编程接口,用于获取和设置 URL 的片段部分。
用法:
url.hash
返回值:它获取并设置 URL 的片段部分。
以下示例程序旨在说明url.hash方法的使用:
示例1:
Javascript
// node program to demonstrate the
// url.hash API as Setter
// creating and initializing myURL
const myURL = new URL('https://example.org/foo#ram');
// Display href value of myURL before change
console.log("Before Change");
console.log(myURL.href);
// assigning fragment portion
// using hash
console.log();
myURL.hash = 'rahim';
// Display href value of myURL after change
console.log("After Change");
console.log(myURL.href);
输出:
Before Change https://example.org/foo#ram After Change https://example.org/foo#rahim
示例 2:
Javascript
// node program to demonstrate the
// url.hash API as Getter
// creating and initializing myURL
const myURL = new URL('https://example.org/foo#ram');
// getting the fragment portion
// using hash
const hash = myURL.hash;
// Display hash value
console.log(hash);
输出:
#ram
注意:上述程序可以使用node myapp.js命令运行。
参考:
https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_hash
相关用法
- Node.js URL.hash用法及代码示例
- Node.js URL.host用法及代码示例
- Node.js URL.hostname用法及代码示例
- Node.js URL.href用法及代码示例
- Node.js URL.toJSON()用法及代码示例
- Node.js URL.pathToFileURL用法及代码示例
- Node.js URL.fileURLToPath用法及代码示例
- Node.js URL.protocol用法及代码示例
- Node.js URL.resolve(from,to)用法及代码示例
- Node.js URL.format(urlObject)用法及代码示例
- Node.js URL.format用法及代码示例
- Node.js URL.origin用法及代码示例
- Node.js URL.password用法及代码示例
- Node.js URL.pathname用法及代码示例
- Node.js URL.port用法及代码示例
- Node.js URL.search用法及代码示例
- Node.js URL.username用法及代码示例
- Node.js URL.searchParams用法及代码示例
- Node.js URL.createObjectURL(blob)用法及代码示例
- Node.js URLSearchParams.sort()用法及代码示例
- Node.js URLSearchParams.set()用法及代码示例
- Node.js URLSearchParams.toString()用法及代码示例
- Node.js URLSearchParams.keys()用法及代码示例
- Node.js URLSearchParams.getAll()用法及代码示例
- Node.js URLSearchParams.forEach()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js URL.hash API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。