我有這樣的方法:的jQuery如何通過屬性列表迭代值
$("#btnupdateofficeapprovers").click(function() {
var checkedInvoiceLineIds = $(":checked").attr("data-invoicelineid");
checkedInvoiceLineIds.each(function (index) {
alert(index + ': ' + $(this).text());
});
});
<table>
@foreach (var item in Model.Invoice.InvoiceLines) {
<tr class="subheader">
<td>
<input type="checkbox" class="invoicelinecombobox" [email protected] >
</td>
</tr>
}
</table>
<div id="updateapproversdiv">
@Html.DropDownListFor(modelItem => Model.Invoice.ApprovedForPaymentUserId, Model.OfficeApprovers, new { @class = "officeapproverddl" })
<input type="button" id="btnupdateofficeapprovers" class="button invisibleforprint" value="Update" />
</div>
我想要做的就是讓所有的invoicelineid,並把他們集中。
接下來我想穿過列表中的每個ID並將其顯示在警報中。
問題是這是拋出一個很大的例外。任何人都知道如何解決?這個怎麼做?
請告訴我們您的HTML。 – jfriend00 2012-04-11 08:44:26