根据您的网站,
您有一个带有 z-index 800 的空跨度,它放置在您的内容滑块上。它位于 id 为“banner_right”的 div 之后。因此,您单击的是跨度而不是锚点,这就是为什么它没有触发。
HTML 代码:
<div id="banner_right"><span></span>
<div class="contentslider" id="one" style="width: 535px; height: 233px;"><a class="cs_leftBtn" href="#" style="opacity: 0; display: none;"><img src="../image-files/templatemo_left_nav.png" style="padding: 0px;"></a>
<div class="cs_wrapper">
<div class="cs_slider">
<div class="cs_article" style="width: 535px; height: 233px;"><div style="background-color:#CCC; padding:15px 0 55px 0">
<a onclick="return FIX.track(this);" href="http://www.templatemo.com"> <font size="+2">How you doing today </font></a> <img alt="Seagulls" src="http://www.successrealization.com/../image-files/templatemo_image_01.jpg">
</div></div>
CSS:
#banner_right span {
background: url("../image-files/templatemo_banner_image_frame.png") no-repeat scroll 0 0 transparent;
height: 233px;
left: 0;
position: absolute;
top: 0;
width: 535px;
z-index: 800;
}
提示:使用firebug检查您的网页