function tiaozhan() {
//start
$.ajax({
type: "POST",
url: "xml/xxx.asp",
data: "",
success: function(msg){
if(msg!=''){
alert(msg);
}
}
});
//over
}