我还是 ASP.Net 的新手,但我有一些问题。我知道 jQuery-ajax 跨域策略,但是当我将这个 js 文件与 ASPX 页面关联时,我可以做些什么吗?我的意思是 - 在 ASP 中我可以使用WebClient
or HttpWebRequest
/ Response
(跨域),所以也许有一些解决方案可以将它与 jQuery 一起使用?
到目前为止,我只想出了:
WebClient wClient = new WebClient()
byte[] arr = wClient.DownloadData("http://www.google.com/");
Response.Write("<div id='placeholder' >");
Response.Write(System.Text.Encoding.UTF8.GetString(arr));
Response.Write("</div>");
然后用 jQuery
var c = $('#placeholder').find('#content'); //assuming that there is some tag with id=content
$('body').append(c)
有更优雅的解决方案吗?你知道一些教程吗?