$.ajax({
url:"${base}/bosImg.xml",
dataType:"xml",
success:function(data){
$(data).find("bosPicture[wlbh='"+wlbh+"'][size='800']").find("imgs").each(function (i){
$('#showbox').empty();
$(this).children('img').each(function (ii){
$('#showbox').append('<img src="'+$(this).text()+'" width="280" height="280" />');
})
});
},
error:function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.status);
alert(XMLHttpRequest.readyState);
alert(textStatus);
}