我在一个站点www.aaa.com
上有一个 PHP 页面,当我单击发送按钮时,它应该在该页面上将文本框数据作为发布数据发送到 ASPX 网页www.bbb.com
。
我需要相关的 ASPX 代码来将帖子数据检索到文本框中并自动提交。
我怎么做?
如果您有能力依赖客户端解决方案,则可以使用jQuery
$.ajax()来实现这一目标。引用 jQuery API 页面, $.ajax() 函数:
执行异步 HTTP (Ajax) 请求。
然后,您可以使用如下类似的代码来发送您的数据POST
,然后检索服务器提供的任何响应(编辑到跨站点功能):
$.ajax({
url: 'yourfolder/bbb.com?myparameter=myargument',
dataType: 'jsonp',
crossDomain: true,
jsonp: false, //or else the first json element will be a ?
data: $("#my-form-text-area").val(), //the data sent to the server
success: function(receivedData) {
alert("This is the data received from the server: " + receivedData.myJsonField);
}
});
$.ajax
默认情况下,请求是异步的,这意味着处理将在您的服务器中进行,并且该success
函数仅在收到响应时才显示数据。
如果这是您的网站 - 尝试 GET。如果没有,你可以 CURL