标签:
function CheckWamt() {
var smat = "";
$(‘#<%=Txn_gv.ClientID %>‘).find(‘input[type=checkbox]‘).each(function (i) {
if ($(this).attr(‘checked‘) == ‘checked‘) {
smat = $(‘#MainContent_Txn_gv_txtSAmt_‘ + i).val();
}
});
alert(smat);//
}
标签:
原文地址:http://www.cnblogs.com/zhuanglijie/p/5367718.html