急!!!等!!!问题是:iframe为什么不能放到位置1,而必须放到位置2???
问题是:iframe为什么不能放到位置1,而必须放到位置2???
<xsl:template match='HandNav/data'>
<table width='100%' height='200' id='loading'>
<!--位置1-->
<tr>
<td valign='top'>
<br/><br/>
<div align="center"><b>正在加载数据,请稍候...</b></div>
</td>
</tr>
<table>
<!--位置2-->
<xsl:for-each match="item">
<iframe src='' frameborder='0' border='0'>
<xsl:attribute name="name">frame_<xsl:value-of select="id"/></xsl:attribute>
</iframe>
</xsl:for-each>
</xsl:template>