0

我有一个将数据发送到名为 Print.txt 的文本文件的 sendData.JSON.aspx 页面。但我只想打印在我的网络浏览器页面/HTML PAGE 上选择的数据,注意在那个网络浏览器页面上,数据是在 TABLE 上选择的。我有一个复选框列,所以我想相应地打印所有选定的 ROWS。这是我要打印的代码:

    function printSelected() 
    {
        var selecteditems = hesto.ui.getselecteditems('#scannedlabeltable');

        $.each(selecteditems, function (i, item) {

            $.ajax({
            url: SEND_TO_TEXTFILE_PAGE
                    , data: "serial=" + item.id
                        , datatype: 'json'
                        , success: function (status) {
                            if (status.error) {
                                alert(status.error);
                            }
                        }
                        , error: hesto.ajax.errorhandler
            });
        });
4

0 回答 0