gpt4 book ai didi

java html内容带有多个单双引号

转载 作者:太空宇宙 更新时间:2023-11-04 11:59:21 25 4
gpt4 key购买 nike

  • 您好,问题很简单,但我无法回答。
  • 我已经为 html 内容字符串编写了 java 代码。
  • 我的目标是:当点击此处打开 yahoo.com 和 google.com 页面
  • 我能够打开 html 并点击点击此处标签 我只能打开 yahoo.com 页面,并且无法打开 google.com 页面
  • 我遇到了 ""' ' 符号位于正确位置的问题。
  • 代码是

    String content;
    content = "<html><head>....."
    +"<a href='http://yahoo.com' "
    + "onclick=\"window.open('http://google.com'); \">"
    + "Click Here</a>"
    ....
    +"</body>"
    +"</html>"

最佳答案

我尝试过这个:

public class Test{

public static void main(String []args){
System.out.println("Hello World");
String content;
content = "<html><head>"
+"<a href='http://yahoo.com'"
+ "onclick=\"window.open('http://google.com'); \">"
+ "Click Here</a>"
+"</body>"
+"</html>";
System.out.println(content);
}

}

并将生成的字符串粘贴到一个空白的 html 文件中,在浏览器中打开它,发现它按我的预期工作(指向 Yahoo 的链接,可同时打开 Yahoo 和 Google)。

关于java html内容带有多个单双引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41072445/

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