當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js URL.hash用法及代碼示例


url.hash是具有URL模塊的URL類的內置應用程序編程接口,該模塊用於獲取和設置URL的片段部分。

用法:

const url.hash

返回值:它獲取並設置URL的片段部分。


以下示例程序旨在說明url.hash方法的使用:

範例1:

// node program to demonstrate the  
// url.hash API as Setter  
  
//importing the module 'url' 
const http = require('url'); 
  
// 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); 
  
// assinging 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:

// node program to demonstrate the  
// url.hash API as Getter  
  
//importing the module 'url' 
const http = require('url'); 
  
// 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

注意:以上程序可以通過使用節點myapp.js命令運行。

參考:
https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_hash



相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node | URL.hash API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。