我正在使用jquery加载局部视图。
$("#policyMembers").html('<div class=loader></div>').load("<%= Url.Action("PolicyMembers", "Scheme") %>");
我的部分视图如下:
<table class="grid">
<tr>
<th>Title</th>
<th>First Name</th>
<th>Surname</th>
<th>ID Number</th>
<th>Date Of Birth</th>
<th>Gender</th>
<th>Cover</th>
</tr>
由于某种原因,在使用jQuery加载视图时不应用网格类,但是当我通过使用renderpartial加载它时,将应用该样式。
任何想法?