Cross Domain 'Http Head' Request
Do Browsers allow 开发者_如何转开发cross domain 'Head' Request?
Unfortunately, no. Cross-domain requests (e.g., JSONP, image loads) must load the whole resource with a GET
.
If bandwidth is an issue but latency is not, you can create a server-side script on the same domain to proxy the HEAD
request.
精彩评论