HTML链接在<ul>标记</ul>中不起作用

时间:2013-04-09 10:35:50

标签: html css

我正在使用模板来处理代码,并且很难让“模板商店”链接起作用。

请帮助我解决这个问题,因为点击时目前没有任何问题。

更新:

以下是我网站的链接 - http://www.graphixinc.co.za/test/index.html。我在这里使用target = _blank,但它无效。

以下是代码:

<div class="navigation">
        <img src="images/navigate.png" alt="navigate_img"/>
        <ul>  
            <li>  
                <a href="#take-me-home" class="nav-active rounded"><span>Take Me Home</span></a>  
            </li> 
            <li>  
                <a href="http://www.mywebsite.co.za/store" class="roundedss" target="blank"><span>Template Store</span></a>  
            </li> 
            <li>  
                <a href="#about" class="rounded"><span>About</span></a>  
            </li>  
            <li>  
                <a href="#services" class="rounded"><span>Services</span></a>    
            </li>  
            <li>  
                <a href="#showcase" class="rounded"><span>Portfolio</span></a>    
            </li>
            <li>  
                <a href="#our-team" class="rounded"><span>On Promo</span></a>    
            </li>   
            <li>  
                <a href="#news" class="rounded"><span>News</span></a>  
            </li> 
            <li>  
                <a href="#contact-us" class="rounded"><span>Contact Us</span></a>  
            </li>  

        </ul>  
    </div>       

非常感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

那是因为target="blank"应该是target="_blank"

<a href="http://www.mywebsite.co.za/store" class="roundedss" target="_blank"><span>Template Store</span></a>

答案 1 :(得分:0)

目标应该是“_blank”并且我测试了它...

<a href="http://www.mywebsite.co.za/store" class="roundedss" target="_blank"><span>Template Store</span></a>

here是它的小提琴,它运作良好......