52,792
社区成员




$("#form1").ajaxSubmit({
url: 'http://baidu.com/action/SendMail.ashx',
type: "post",
success: function (result) {
}
});
//$.post("http://url.com/action/SendMail.ashx", $(".BoboFlag").serialize(), function (result) {
请问下怎么通过$.post("Url“ 可以提交数据到其他网站url上面去,
$.post("../Common/action/SendMail.ashx", $(".BoboFlag").serialize(), function (result) {
这样是可以提交数据
换成这种就提交不了
$.post("http://url.com/action/SendMail.ashx", $(".BoboFlag").serialize(), function (result) {
麻烦大神帮忙改怎么解决。
跨域问题