リモートの html ページを読み込んで解析したい。そのような例はたくさんありますが、このエラーが発生する理由を誰か説明できますか?
XMLHttpRequest はhttp://html.comsci.us/examples/blank.htmlを読み込めません。Origin null は、Access-Control-Allow-Origin では許可されていません。
このhtmlページを読み込もうとすると:
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.get('http://html.comsci.us/examples/blank.html', function(data) {
alert('Load was performed.');
});
});
</script>
</head>
<body>
</body>
</html>