我必须在下面为我的 html 代码包含一个滚动条。代码如下-->
<html>
<head></head>
<body>
<div style="overflow:scroll;height:100px;scrollbar-shadow-color: #2D2C4D;scrollbar-highlight-color:#7D7E94;scrollbar-face-color: #000000;scrollbar-3dlight-color:#7D7E94;">
<table width="100%" style="border-collapse:collapse;overflow:scroll;height:10px">
<tr>
<% dim CountFlg
CountFlg = 0
for i=0 to XmlNodes.length-1
if CountFlg <= 2 then %>
<td>
<b><%=XmlNodes.item(i).getAttribute("xx")%></b>
</td>
<TD>
<input class="TextArea" name="<% xx % >" id="<% xx %>" style="height:35px;overflow:auto;padding-left:80px;" rows="5"cols="10"> </input>
</TD>
<% CountFlg=CountFlg+1
end if
next%>
</tr>
</table>
</div>
</body>
</html>
由于我在这里有一个 for 循环,我不知道我会得到多少个标签。所以我想为我的标签放置一个滚动条。如何做到这一点?有没有办法可以在这里放置 div 标签的 if conition,就像如果 XmlNodes.length>8 然后包含 div 标签,否则不需要 div 标签。如何做到这一点。?