我需要在下面为我的 html 代码包含 iframe。如何执行此操作?以下是我的代码:
<html>
<head></head>
<body>
<table>
<tr>
<% dim CountFlg
CountFlg = 0
for i=0 to XmlNodes.length-1
if CountFlg <= 2 then %>
<td class="style3" >
<span class="style4">
<b><%=XmlNodes.item(i).getAttribute("Name")%></b>
</span>
</td>
<TD>
<input class="TextArea" name="<% i % >" id="<% i %>" style="height:35px;overflow:auto;padding-left:80px;" rows="5"cols="10"> </input>
</TD>
<% CountFlg=CountFlg+1
end if
next%>
</tr>
</table>
</body>
</html>
我在这里跳过了其余的代码。有没有办法在 iframe 中只包含 tr 标记?我尝试在这里添加 iframe tat 没有t work.I don
单独的 html 内容文件,我在经典的 asp 文件中构建这个 html。所以请提出一些答案。