0

所以我刚刚建立了一个新页面,链接在我的本地机器上的 Chrome 和 IE 10 中工作,但是当我将网站上传到我的服务器时,链接只能在 chrome 中工作?IE 的行为就像那里什么都没有?

这是后面的代码,如果您想自己尝试,这里是链接。我什至还没有尝试过Firefox。恐怕那会怎样。

http://www.AnthonyRussell.info

提前致谢!

    <hr>
    <a href="index.html"><button style="width:180px; height:40px" >Home</button></a>
    <a href="bio.html"><button style="width:180px; height:40px">Biography</button></a>
    <a href="projects.html"><button style="width:180px; height:40px">Projects</button></a>
    <a href="resume.html"><button style="width:180px; height:40px">Abv Resume</button></a>
    <a href="goals.html"><button style="width:180px; height:40px">Goals</button></a>
    <a href="contact.html"><button style="width:180px; height:40px">Contact</button></a>
    <hr>
4

1 回答 1

1

你不能有一个<button>inside<a>标签。你想做什么来需要一个按钮元素?

更新:

有关更多信息和可能的解决方法,请尝试:

锚链接内的按钮在 Firefox 中有效,但在 Internet Explorer 中无效?

但我会说设计自己的 CSS 按钮会更好。如果您时间紧迫,请尝试http://www.cssbuttongenerator.com/ 。

于 2013-02-18T02:52:21.717 回答