我被迫让这个网站与 IE6 兼容。我希望我没有,但生活就是这样。
这就是问题所在。当我运行cfloop query="thisqueryName"时,它会在 overflow-y:scroll 表的顶部添加大约... 500-600px 的空白。
我尝试将表格顶部的位置强制向上以补偿额外的空白,但没有运气。
<div id="myDivid" >
<table id="thistablename">
<!--- Here is the problem --->
<cfloop query="thisqueryname">
<!--- End of Problem Code -->
<cfquery name="thisotherqueryname" datasource="#Application.dsn#">
SELECT name
, frequency
, ninjaskills
FROM thistablename
WHERE tid = #ID#
AND status = 'A'
</cfquery>
<cfquery name="anotherqueryname" datasource="#Application.dsn#">
SELECT somestuffhere
FROM thisothertablenamehere
WHERE ID = #ID#
</cfquery>
<tr>
<th class="numCol"></th>
<!--- etc etc etc --->
(不,这不是我的命名模式(:名称已更改以保护无辜者等等)
任何解决此问题的修复或有用的建议将不胜感激!