<a> Tag Not Working?</a>

时间:2012-03-25 15:09:25

标签: php javascript css hyperlink

这似乎是一个基本问题,但我目前没有工作。我不确定为什么会发生这种情况,它可能是javascript,或者我用PHP编写了页面或者我使用的是z-index,但我无法解决它。

您可以在此处查看问题: http://www.maxrichardson.co.uk/home.php

问题出现在右侧黄色的“CV按钮”上:

我使用的代码是:

#CV-Download    {
    position: fixed; 
    margin: 50px 0 10px 10px; 
    z-index: 888; 
    right:0; 
    cursor:pointer;
    width: 75px;
    height: 75px;
    background:url(images/cv.png);
    }

#CV-Download:hover  {
    background:url(images/cv-hover.png);
    z-index: 889; 
    }


<div id="CV-Download">
<a href"Max Richardson CV" onclick="_gaq.push(['_trackEvent', 'Side CV Button']);" title="My CV" rel="0" class="newWindow" >CV</a>
</div>

5 个答案:

答案 0 :(得分:5)

需要

<a href="whatever">text</a>

您错过了=

答案 1 :(得分:4)

你错过了href

之后的平等
<a href"Max Richardson CV"

应该是

<a href="Max Richardson CV"
       ^

答案 2 :(得分:3)

<a href"Max Richardson CV" onclick="_gaq.push(['_trackEvent', 'Side CV Button']);" title="My CV" rel="0" class="newWindow" >CV</a> 

...缺少href和Max之间的'='。我也建议你做到  href='#' title='Max Richardson CV'

答案 3 :(得分:2)

忘了=在href之后:

<div id="CV-Download">
<a href="Max Richardson CV" onclick="_gaq.push(['_trackEvent', 'Side CV Button']);" title="My CV" rel="0" class="newWindow" >CV</a>
</div>​

答案 4 :(得分:0)

您缺少行中的=符号

<a href"whatever">text</a>