<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
$.ajax({
type: 'GET',
url: 'http://dictionary-thesaurus.com/wordlists/Nouns%285,449%29.txt',
contentType: 'text/plain',
xhrFields: {withCredentials: true},
headers: {'Access-Control-Allow-Origin':'*'},
success: function (res) {
var words = res.responseText.split("\n");
alert("word : " + words[2]);
}
});
</script>
</head>
<body>
</body>
</html>
//XMLHttpRequest 无法加载http://dictionary-thesaurus.com/wordlists/Nouns%285,449%29.txt。