简体   繁体   English

html链接不可点击

[英]html links not clickable

I've been doing basic html coding for awhile, but I am coming across something here that has me stumped. 我已经进行了一段时间的基本html编码,但是在这里遇到了让我感到困惑的事情。 Look at the page at on http://www.uwfantasyfootballleague.com/teams/2013_Atlanta.html and the page source code. http://www.uwfantasyfootballleague.com/teams/2013_Atlanta.html上查看页面以及该页面的源代码。 On the resulting page, on the two rows of links at the top, the links on the right half of the page, the CL & PCC, and from SD to the right on the second row, are unclickable. 在结果页面的顶部两行链接中,页面右半部分的链接CL&PCC,以及从SD到第二行右侧的链接不可单击。

Here's a segment of the code: 这是一段代码:

Edit: well it won't let me post that section of the code because it says I need 10 reputation to most more than two links -- but the code is there on the page 编辑:好吧,它不会让我发布代码的那部分,因为它说我需要10个以上最多两个链接的信誉-但是页面上有代码

There is nothing different about the code from the ones that aren't clickable, and there's no reason this should be the case, at least that I can see, or there is something obvious that I am overlooking. 该代码与不可单击的代码没有什么不同,并且也没有理由这样做,至少我可以看到,或者有明显的事情我可以忽略。 I can't figure it out. 我不知道。 I've looked on different computers, on PCs and a Mac, and from different locations, it's nothing on the browsers end, it's something in the code, or at least how the code is being displayed. 我看过不同的计算机,PC和Mac,并且从不同的位置浏览器端什么都没有,它在代码中是存在的,或者至少是代码的显示方式。

I searched for an existing answer, only one I found... 我搜索了一个现有答案,只有一个找到了...

Links not displaying links 链接不显示链接

...it referred to "div" and "p" tags, which I haven't used in my code. ...它指的是“ div”和“ p”标签,我的代码中没有使用它们。

Thanks in advance. 提前致谢。

I can see what you are talking about and I noticed that aside from the links on the right being un-clickable, the right edges of the EA and NYS links are un-clickable as well. 我可以看到您在说什么,并且我注意到,除了右边的链接不可点击之外,EA和NYS链接的右边缘也同样不可点击。 This tells me that there is an element sitting on top of your text. 这告诉我,您的文字上方有一个元素。

I inspected your code using Firebug on Firefox and am seeing this code hovering right over those links: 我在Firefox上使用Firebug检查了您的代码,并看到此代码悬停在这些链接上:

<iframe width="undefined" scrolling="no" height="undefined" frameborder="0" style="left:0;position:absolute;top:0;" name="aswift_0" id="aswift_0" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){w.location.replace(h)}}" allowtransparency="true" hspace="0" vspace="0" marginheight="0" marginwidth="0"></iframe>

This code needs to be omitted or fixed to solve your problem I believe. 我相信此代码需要省略或解决,以解决您的问题。

An iframe with the id #aswift_0 is blocking the menu. ID为#aswift_0的iframe阻止了菜单。 Try removing this if it is not needed. 如果不需要,请尝试将其删除。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM