我有這個網址,我想刪除「amp;」從中。任何想法Javascript刪除&符號「amp;」從url
http://localhost/projects/opencart/opencart230/upload/index.php?route=product/product&product_id=40
我有這個網址,我想刪除「amp;」從中。任何想法Javascript刪除&符號「amp;」從url
http://localhost/projects/opencart/opencart230/upload/index.php?route=product/product&product_id=40
請考慮使用不包含像&
這樣的HTML實體的URL。如果由於某種原因,你不能避免他們在你的網址,請執行以下操作來分析它們:
const url = "http://localhost/projects/opencart/opencart230/upload/index.php?route=product/product&product_id=40";
const parseResult = new DOMParser().parseFromString(url, "text/html");
const parsedUrl = parseResult.documentElement.textContent;
console.log(parsedUrl);
可以使用替換功能
str = 'http://localhost/projects/opencart/opencart230/upload/index.php?route=product/product&product_id=40'
str.replace('&','&')
使用替代試過功能 – Eftakhar
替換,但沒有任何改變 – ovicko