我正在尝试从1个网址中删除http://
<script>
window.onload = function(){
var link = "http://exmaple.com/es.html?212132=http://example.com/12.jpg"
link = link.replace(/^https?:\/\//,'');
}
</script>
因此,此代码将从http://exmaple.com/es.html和http://example.com/12.jpg中删除http://
我想只从http://example.com/12.jpg
中删除http://那么如何做到这一点?
谢谢
答案 0 :(得分:2)
这个怎么样?
link = link.replace(/=https?:\/\//,'=');
您基本上找到 = https:// 并将其替换为单个 =