JSFiddle - React, Tailwind, and code Playground
by shitao1988
JavaScript
var req = '{Header:{ChannelId:"titantest",DeviceId:"TestWeb",AuthCode:null,Version:"200",ClientType:1,OsVersion:null}}';
var callurl='http://211.151.235.72/openapi/JsonService/OtherService.aspx';
var paras ="url=" + encodeURIComponent(callurl) +"&action=GetHotelList" +
"&compress=false" +
"&req=" + encodeURIComponent(req);
$.ajax({
type: "POST",
data: paras,
success: function(msg) {
alert("Data Saveda: " + msg.tostring());
}
});