JavaScript从URL中删除//

时间:2016-04-11 13:55:52

标签: javascript url

enter image description here网址示例=新网址(example.getExampleUrl());     exampleString + ="示例&#34 ;;

我对从链接中删除//的网址有疑问。因此,如果我有http://www.google.pl,我会获得http: www.google.pl。我尝试了一个字符串,但后来我遇到了同样的问题。谁能告诉我如何使这个字符串或网址看起来像常规链接?

它在java http://www.google.pl看起来很好但是在页面它没有//因此看起来像http:www.google.pl calendar etc

String test = "http://www.google.pl";
<a href="#" onclick="MyWindow=window.open(" 'http:="" www.google.pl','mywindow','width="600,height=600'');">test</a>

回答这个问题是&#34; &#39;在java中,我不得不像那样使用它

onClick='MyWindow=window.open("+ example +")'

String example= "\"" + google.getUrl()+ "\",\""+google.getNameDisplay()+"\",\"width=600,height=600\"";

1 个答案:

答案 0 :(得分:1)

URL的toString()方法应该返回您想要的内容。试试这个片段:

import java.net.*;
import java.io.*;

class Main {
  public static void main(String[] args) throws MalformedURLException {
    URL example = new URL("http://mostmedia.com");
    System.out.println(example.toString());
    assert "http://mostmedia.com".equals(example.toString());

  }
} 

您可以在repl.it上运行它:https://repl.it/CEVw/1