0

javascript と ajax のみを使用して Web ページからデータを取得したいと考えています。私の Web ページは配列を返します。これを HTML ページに表示したいと考えています。これではphpが使えません。

これは私が使用しているコードです。

<html>
    <head>
        <title>Getting Started Extension's Popup</title>
        <script src="background.js">
        </script>
        <script type="text/javascript">
            $.ajax({
                url:"http://www.mydomain.com/page1.php?url='http://open.live.bbc.co.uk/weather/feeds/en/2643743/3dayforecast.rss'",
                type: 'GET',
                dataType: 'jsonp'
            });

            function callback(data){
                $('#iec_azn_data').html(data.results[0]);
            }
        </script>
    </head>
    <body>
        Hi
        <div id="iec_azn_data">

        </div>
    </body>
</html>
4

1 に答える 1

1

successオプションで機能を割り当て$.ajaxます。その関数は、リクエストが正常に返されたときに呼び出されます。

$.ajax({
  url:"http://www.mydomain.com/page1.php?url='http://open.live.bbc.co.uk/weather/feeds/en/2643743/3dayforecast.rss'",
  type: 'GET',
  dataType: 'jsonp',
  success : function(data){
    //data is a variable containing the returned data
  }
});
于 2013-04-15T11:36:45.237 に答える