JavaScript を使用して RSS フィードを解析する方法から例を取得しようとしていますか? 働く。私のHTMl/スクリプトは以下です。getリクエストが機能していません。エラーは発生していません。何も起こっていません。これはクロスドメインの問題が原因ですか? 誰でも問題を見つけることができますか? 最終的には、次のような政府の rss フィードから国債価格を取得したいと考えてい ます。
<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.11.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script>
$(document).ready(function() {
alert('Jquery working fine');
$.get('https://stackoverflow.com/feeds/question/10943544', function (data) {
$(data).find("entry").each(function () { // or "item" or whatever suits your feed
var el = $(this);
console.log("------------------------");
console.log("title : " + el.find("title").text());
console.log("author : " + el.find("author").text());
console.log("description: " + el.find("description").text());
});
});
});
</script>
</head>
<body>
</body>