0

我正在构建一个页面,该页面在屏幕左侧具有指向 iframe 的链接。它们在新的 IE 中工作得很好,但在 FireFox 中根本不行。我玩过他们的 Z-index,但似乎无法让他们在 FireFox 中被识别。它们不仅不起作用,而且鼠标光标甚至没有显示它们是悬停时的链接。我正在处理的页面的地址在下面的地址。

http://www.snoscoot.com/fcaccessories/hondapowerequipment/test.html

其中一个按钮的代码示例如下:

<A HREF="http://www.snoscoot.com//fcaccessories/hondapowerequipment/subcompacttractorpartsandinformation.html" TARGET="productdisplay"><IMG SRC="http://www.snoscoot.com/fcaccessories/hondapowerequipment/hondatractorparts150px.jpg" border="0"> <font size="3" color="black" face="Arial">Subcompact tractor parts</font></a>

我针对目标 iFrame 的代码如下:

<IFRAME SRC="http://www.snoscoot.com/fcaccessories/hondapowerequipment/compacttractorpartsandinformation.html" NAME="productdisplay" WIDTH=700 HEIGHT=1622 frameBorder="0" scrolling="no"> </IFRAME>

有人会对如何让链接在 FireFox 中起作用有一些建议吗?我似乎无法弄清楚为什么它们在 IE 中工作,但在 FF 中却不行。

谢谢

4

1 回答 1

0

Your iframe inside the <div id="dropdown"> is 1500px tall by 950px wide and hence covers up most of the rest of the page. In particular it's sitting above those links, so they can't be clicked.

Are you sure you want it to be 1500px tall?

于 2013-03-29T23:59:55.500 回答