分配值但在Jquery中获取null值

时间:2014-05-18 12:48:49

标签: jquery twitter-bootstrap

我通过将所有值赋值给一个字符串变量来赋值,但是当我打印值时,我从该变量中获取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 + "");
            });
        }
    });
}

0 个答案:

没有答案