Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Internet explorer 在IE 6中不可读取_Internet Explorer_Internet Explorer 6 - Fatal编程技术网

Internet explorer 在IE 6中不可读取

Internet explorer 在IE 6中不可读取,internet-explorer,internet-explorer-6,Internet Explorer,Internet Explorer 6,这是我在XSL文件中编写的所有html代码。 Div body我有一个Div类别,左右两个区域 在每一面我都有一个相同的div包含一个链接,但是右边的链接可以点击可点击,左边的链接不可点击。有人有同样的问题请给我指路 <xsl:for-each select="categories/category"> <div class="Categories-News"> <div class="Categories-News-Title"> <a href="/

这是我在XSL文件中编写的所有html代码。 Div body我有一个Div类别,左右两个区域 在每一面我都有一个相同的div包含一个链接,但是右边的链接可以点击可点击,左边的链接不可点击。有人有同样的问题请给我指路

<xsl:for-each select="categories/category">
<div class="Categories-News">
<div class="Categories-News-Title">
<a href="/{@name}">
<xsl:value-of select="@label" />
</a>
</div>
<div class="Categories-News-Left">
<div class="Categories-Top-News">
<div class="Categories-Top-Wrap-Content">
<xsl:if test="article[1]/@image">
<div class="Wrap-Border">
<div class="Wrap-Image">
<img src="{article[1]/@image}-140x120.jpg" width="121" />
</div>
</div>
</xsl:if>
<p class="categories-title">
<a href="{article[1]/@seo-url}">
<xsl:value-of select="article[1]/@title"
disable-output-escaping="yes" />
</a>
</p>
<p>
<a href="{article[1]/@url}" class="edi">
<xsl:value-of select="article[1]/@edition" />
</a>
-
<xsl:value-of select="formater:date(article[1]/@date)" />
</p>
<xsl:value-of select="article[1]/@body"
disable-output-escaping="yes" />
</div>
</div>
<xsl:choose>
<xsl:when test="article[1]/related">
<xsl:for-each select="article[1]/related">
<div class="Relate-Items">
<div class="arrow"></div>
<div class="Linklink">
<a href="{@seo-url}">
<xsl:value-of select="@title"                                                   disable-output-escaping="yes" />
</a>
<span>
<a href="{@url}" class="edition">
<xsl:value-of select="@edition" />
</a>
</span>
</div>
</div>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:for-each select="article">
<xsl:if test="position() &lt; 5 and position() &gt; 1">
<div class="Relate-Items">
<div class="arrow"></div>
<div class="Linklink">
<a href="{@seo-url}">
<xsl:value-of select="@title"
disable-output-escaping="yes" />
</a>
<span>
<a href="{@url}" class="edition">
<xsl:value-of select="@edition" />
</a>
</span>
</div>
</div>
</xsl:if>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</div>
<div class="Categories-News-Right">
<xsl:for-each select="article[position() &gt; 4]">
<div class="Relate-Items">
<div class="arrow"></div>
<div class="Linklink">
<a href="{@seo-url}">
<xsl:value-of select="@title" />
</a>
<span>
<a href="{@url}" class="edition">
<xsl:value-of select="@edition" />
</a>
</span>
</div>
</div>
</xsl:for-each>
</div>
</div>
</xsl:for-each>

-


我看到当这个页面在IE 6中加载时,我仍然可以点击左边的链接,但是当它加载完页面时,我不能点击链接,我最近也有类似的行为。问题是我有一个具有固定高度/宽度的div元素,但是内容比“计算”的要大。因此,指定维度之外的所有内容都显示出来,但不可单击。因此,如果指定,请尝试放大div大小。

请向我们显示您的html+css css类与html类不匹配,没有标题html,也没有z索引。如果没有准确的数据,我们无法帮助您。我很抱歉浪费您的时间annakata,这是我所有的html代码和css,我不知道这是不够的,不是吗?无论如何,谢谢你关注我的问题!