gpt4 book ai didi

javascript - 从 url 字符串中删除文本 javascript

转载 作者:行者123 更新时间:2023-12-03 09:38:35 24 4
gpt4 key购买 nike

我想用 JavaScript 显示用户所在页面的文件名。例如,

https://test.example.com/wow.html

应该返回

wow

我试图使用 replace() 方法,如下所示:

var url = document.URL;
document.getElementById("code").innerHTML = url.replace("http://test.example.com/", " ");

但我不知道如何删除 .html 扩展名,或者替换 https url。有更好的方法吗?

谢谢。

最佳答案

另一种可能的方法。

var url = "https://test.example.com/wow.html"

var urlSplit = url.split("/");
var name = urlSplit[urlSplit.length-1].split(".")[0];
console.log(name);

//如果使用像 my.page.html 这样的名称,这当然会失败,但这只是提供另一种选择。 :)

关于javascript - 从 url 字符串中删除文本 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31254196/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com