我正在使用以下代码向 Web 服务器发出 http 请求,但它不起作用。
谁能告诉我原因以及怎么做?
$(document).ready(function(){
$("#AddUser").click(function(){
alert("Sending");
$.post("http://10.200.208.18:1897/Channels/HttpChannel/Input",
{
CustomerId : "Ram"
CustomerName : "Ram Kumar"
AnualIncome : "120000"
Country : "INDIA"
Balance : "100"
DOB : "1980-09-12T12:34:45"
},
function(data,status){
alert("Data: " + data + "\nStatus: " + status);
});
});
});