CSS Href链接不起作用

时间:2017-03-11 03:05:35

标签: html

我有HTML和CSS,但href链接不起作用:

<div class="dropdown">
  <h3 class="dropbtn">{{::options.title}}&nbsp&nbsp<span class="caret"></span></h3>
  <span class="text-muted">{{::options.short_description}}</span>

  <div class="dropdown-content">
    <li><a title="Hardware" target="_blank" href="www.google.com">Hardware </a></li>
    <a title="Hardware" target="_blank" href="www.google.com">Software </a>
  </div>
</div>

href没有带我去google.com 请帮忙

1 个答案:

答案 0 :(得分:0)

如果省略&#39; http://&#39;从href属性的开头,它将其视为相对链接。使用&#39; https://www.google.com/&#39;

之类的内容