var xyz = $.ajax({
url:'ActionUseSort.php',
data:urlTxt,
type:'get',
dataType:'html',
success:function(response)
{
$('#container').empty();
$('#container').html(response); //***  这个地方再次发送ajax,如果弄?要不断的递归下去,
                                               发送的相同的ajax,在mootools里边,可以这么干。
                                              $('#query').click(function(){
                                                   
                                                       xyz.send(urlTxt);//jquery这边不知道怎么弄?
                                                                          发送相同的ajax                                               });//***query按钮是返回的response网页里面的按钮
}
});