现在有一个解决此问题的方法,以下是对我有用的代码:
chrome.LoadHtml(@"<html>
<center><h1>New tab</h1></center>
<center><a href=""https://youtube.com"">YouTube</a>, </center>
<center><a href=""https://google.com"">Google</a></center>
<center><a href=""https://github.com"">Github</a></center>
</html>");
如何在CefSharp.LoadHtml中添加超链接?我一直在Visual Studio 2017中遇到语法错误``,'',并且在将逗号(如youtube.com)添加为逗号后仍然无法正常工作,所以我尝试了https://,令我惊讶的是,在此之后一切都变成了评论。我已经做过一些研究,看来目前没有人遇到这个问题。
我是CefSharp的新手,并通过互联网阅读了一些教程。 这是我要尝试的新标签页的页面。
chrome.LoadHtml("<html><center><h1>New tab</h1></center><center><a href="youtube.com">YouTube</a>, </center><center><a href="google.com">Google</a></center><center><a href="github.com">Github</a></center></html>");
答案 0 :(得分:2)
尝试这样的事情:
chrome.LoadHtml(
@"<html>
<center><h1>New tab</h1></center>
<center><a href=""https://youtube.com"">YouTube</a></center>
<center><a href=""https://google.com"">Google</a></center>
<center><a href=""https://github.com"">Github</a></center>
</html>");
它使用Verbatim String Literal(逐字字符串字面量),使您可以按预期使用多行标记。双引号是VSL逸出双引号的方法。