-3

我需要将此代码转换为 jQuery。

非常感谢。

  function myItem(id,  page) {  
        AjaxPost(WEB_URL+'/myitems.inc.php', "page="+page+"&id="+id, 
            function () {
                if (xmlHttp.readyState == 4 || xmlHttp.readyState == "complete") {
                    div('myItem_box').innerHTML += xmlHttp.responseText;
                }
            }
        )
    }
4

1 回答 1

2
function myItem(id, page) {
    $.post({
        url: WEB_URL + '/myitems.inc.php',
        data: {page: page, id: id},
        success: function(response) {
            $('#myItem_box').append(response);
        }
    });
};
于 2013-11-03T18:54:01.183 回答