这是代码片段:
@foreach (var item in Model)
{
<table>
<thead>
<tr>
<th>Column1</th>
<th>Column2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Value1</td>
<td>Value2</td>
</tr>
</tbody>
<table>
<script type="text/javascript">
$(function () { $("table").highchartTable(); });
</script>
}
为什么在MVC3 Razor foreach循环中没有创建javascript代码? 必须创建多个javasctipt代码。
但是,生成的HTML根本没有javascript。
任何想法??
谢谢。