我通过将所有值赋值给一个字符串变量来赋值,但是当我打印值时,我从该变量中获取null值。我正在使用" ids"变量来赋值。
这是代码
ids = "";
if ($('input[name=msg_sel]:checked', '#' + tableid).length) {
$.colorbox({
initialHeight: '0',
initialWidth: '0',
href: "#confirm_dialog",
inline: true,
opacity: '0.3',
onComplete: function () {
$('.confirm_yes').click(function (e) {
e.preventDefault();
$('input[name=msg_sel]:checked', oTable.fnGetNodes()).closest('tr').fadeTo(300, 0, function () {
$(this).remove();
oTable.fnDeleteRow(this);
ids += $(this).attr("id").substring(3);
//alert(ids); here it works correct
$('.select_msgs', '#' + tableid).attr('checked', false);
});
// here it is shows null value
alert(ids + "");
});
}
});
}