0

我正在制作一个模板来玩弄代码,并且很难让“模板商店”链接正常工作。

请您帮我解决这个问题,因为单击时当前没有任何反应。

更新:

这是我网站的链接 - 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>       

非常感谢您的帮助。

4

2 回答 2

1

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

<a href="http://www.mywebsite.co.za/store" class="roundedss" target="_blank"><span>Template Store</span></a>
于 2013-04-09T10:39:06.680 回答
0

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

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

是它的小提琴,它工作正常......

于 2013-04-09T10:42:56.670 回答