この例を試してください:
js を使用してこのコードを記述し、index.html ファイルにインクルードするか、javascript タグを使用して、このコードを html ファイルに記述します。index.hmtl に xui-2.3.2.js ファイルをインクルードする必要があります。 .このファイルを使用しない場合、x$ は機能しません。
x$.data = {};
x$(window).load(function(e){
x$("#returned_information").xhr("http://ws.geonames.org/postalCodeSearchJSON?postalcode=90210&maxRows=10",
{ callback: function(){
var codes = eval("("+this.responseText+")").postalCodes; /* this should be an array */
x$("#returned_information").html(codes[0].placeName);
}
}
);
});
これはindex.html本体にあります
<h1 id="returned_information">
Put Stuff in Me
</h1>
最後に、外部ホストのプロパティ リスト ファイルで URL を開く許可を与えます。外部ホスト配列に * を追加します。
私はそれが完全に機能すると確信しています。