当我点击第一个屏幕的复选框时,第二个屏幕上的相关所有复选框都会自动点击。你能告诉我怎样才能实现这个目标?
注意:实际上我有两个不同的屏幕。当我点击第一个屏幕的复选框时,说“修饰”然后自动点击第二个屏幕的所有相关复选框(即所有修饰)复选框)
屏幕1:
S 1的源代码:
<div class="padded-content">
<h2>Extra Services</h2>
<ul id="extra-services-details">
<% foreach (var extra in Model.Provider.Services)
{ %><li>
<input id="<%: extra.Id %>"
type="checkbox" name="extraService" value="<%: extra.Id %>" /><label for="<%: extra.Id %>"><%: extra.Name%></label></li>
<% } %>
</ul>
</div>
屏幕2:
S 2的源代码:
<div class="extra-service">
<table id="extras">
<thead>
<tr>
<th></th>
<%
foreach (var d in Model.Dates)
{
%><th colspan="<%: Model.Pets.Count() %>"><%: Html.DisplayFor(m => d.Date, "DateIcon") %>
</th>
<%
}
%>
</tr>
<tr>
<th style="text-align: left;">Service</th>
<%
foreach (var d in Model.Dates)
{
if (Model.Pets.Count() > 1)
{
foreach (var pet in Model.Pets)
{
%><th id="<%: pet.Key%>"><%: pet.Name%></th>
<%
}
}
else
{
%><th></th>
<%
}
}
%>
</tr>
</thead>
<tbody>
<%
var extras = Model.Provider.OfferredServices.Where(s => s.IsAnExtra && s.Key != Model.Service.Key).OrderBy(s => s.DisplayIndex).ToList();
foreach (var service in extras)
{ %>
<tr>
<td><%: service.Name %> </td>
<%
foreach (var d in Model.Dates)
{
foreach (var pet in Model.Pets)
{ %><td style="text-align: center">
<input type="checkbox"
value="<%: pet.Key %>-<%: d.Date.ToString("yyyyMMdd") %>-<%: service.Key %>" />
</td>
<%
}
}
%>
</tr>
<% } %>
</tbody>
</table>
</div>
答案 0 :(得分:1)
尝试
$('#extra-services-details input:checkbox').change(function(){
var idx = $(this).closest('li').index();
$('table tbody tr').eq(idx).find('input:checkbox').prop('checked', this.checked)
})
答案 1 :(得分:0)
在复选框中点击事件:
$(this).closest('tr').find('input[type="checkbox"]')
.prop({ checked: $(this).is(':checked') });
这将找到同一行中的所有复选框并检查它们。这是你要的吗?