私の考えでは、外部画像を動的にロードする最も簡単な方法は、画像のURL(のような)を含むPHPスクリプトからJSONhttp://www.example.com/pictures/getPicture/YOUR_PICTURE_ID
オブジェクトを取得することです。
サーバ側
<?php
$pictureUrl = 'http://example.com/pictures/picture.jpg'; //You can get it with a database query
$pictureName = 'Foo';
$pictureAltText = 'Bar';
// You can do some stuff here.
// At the end of the script, write result.
echo json_encode(compact('pictureUrl', 'pictureName', 'pictureAltText'));
?>
クライアント側
<script type="text/javascript">
// With jQuery
$.getJSON('http://www.example.com/pictures/getPicture/YOUR_PICTURE_ID', function(data){
console.log(data.pictureUrl, data.pictureName, pictureAltText);
var img = new Image();
img.src = data.pictureUrl;
img.setAttribute('alt', data.pictureAltText);
img.onload = function(){
// Displaying picture when download completed
$(img).appendTo('body');
}
});
</script>
jQueryを使用しない場合は、XMLHttpRequestを使用してJSONエンコードされた応答を取得し、それを解析する必要があります(MDNドキュメントはhttps://developer.mozilla.org/en-US/docs/JSONで参照できます)。