我的计算机上有一个文件.html(本地)我只想要一个Button或一个HyperLink。
所以我这样做:
超链接:
<a href="www.google.com" target="_blank">test</a>
按钮:
<button href="www.google.com">test</button>
但它不起作用,因为这个开放的Url喜欢: 文件:/// C:/Users/Cyril/Documents/visual%20studio%202013/Projects/MyProject/www.google.com
如何才能打开www.google.com?
感谢您的帮助
答案 0 :(得分:1)
您在http
属性中的网址前缺少src
。而不是www.google.com
您应该http://www.google.com
更正超链接:
<a href="http://www.google.com" target="_blank">test</a>