gpt4 book ai didi

javascript - 将 URL 替换为 HTML Jquery

转载 作者:行者123 更新时间:2023-11-28 20:01:29 24 4
gpt4 key购买 nike

我在我的 html 页面中使用了静态 http://url,现在我想用空字符串替换。

假设这里是 HTML 内容:

<div id="MSO_ContentTable">
<script type='text/javascript'>
function RedirectURL(RedUrl,curTab)
{
window.location.href='http://www.contoso.com/Sales/SitePages/'+RedUrl;
}
function nav2Lib(RedUrl)
{
NavigateHttpFolder('http://www.contoso.com/Sales/RFP%20Bank/'+h3url, '_blank');
}
function nav2Proposal(RedUrl)
{
NavigateHttpFolder('http://www.contoso.com/Sales/Proposals/'+h3url, '_blank');
}
</script>
........ lots of html contents
</div>

编辑:

   $('#MSO_ContentTable').html().replace(/http://www.contoso.com/g,''); 

我想将整个网址“http://www.contoso.com/”替换为空字符串。

最佳答案

试试这个。我认为您需要转义两个正斜杠就是这样。

$('#MSO_ContentTable').html().replace(/http:\/\/www.contoso.com/g,"");

关于javascript - 将 URL 替换为 HTML Jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21595086/

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