我正在尝试使用嵌套在单元格中的简单表格在我的选举结果页面上显示图表。
<td>
<%: result.candidateName %>
<table style="border:0; padding:2px;">
<tr>
<td style="width:50px; border:0; height:15px; color:Blue; padding:0; font-size:75%;"><%: result.percentWon %>%</td>
<td style="background-color:Blue; width:400px; border:0; height:15px;"></td>
</tr>
</table>
</td>
我需要做的是将单元格样式中的宽度数字(现在设置为400px)更改为4 * result.percentWon,但我无法弄清楚如何将Aligator标签放在样式字符串的中间。< / p>
是的我是菜鸟(o:有人能上学吗?
答案 0 :(得分:0)
您可以将<%: ... %>
放在任何您想要的位置:
<td style="background-color:Blue; width:<%:4*result.percentWon%>px; border:0; height:15px;"></td>