首先,原諒我的英語請..的XMLHttpRequest與第三方服務器上的文件
是否有可能使用的URL參數XMLHTTP GET請求是一個地址到一個文件中未檢索文件位於服務器,但在另一臺服務器?
<script>
var request = new XMLHttpRequest();
request.open("GET", "url/of/file.epub", true);
request.responseType = "blob";
request.onload = function() {
new Epub(request.response, function (bookData) {
Monocle.Reader("reader", bookData);
});
};
request.send();
</script>
在一個XMLHttpRequest上面的例子中已經取得了返回一個blob
[cross domain XMLHttprequest]的可能重複(http://stackoverflow.com/questions/3144093/cross-domain-xmlhttprequest) –