我有两台服务器,'Localhost'和'Server1'。我希望Localhost上的page.html
引用Server1上的图片。这是我得到的错误:
biggie.jpg:1 GET http://localhost/img/team/biggie.jpg 404 (Not Found)
以下是选择图片的脚本
<script type="text/javascript">
$(document).ready(function() {
var url = "http://server1/integration/team.php";
$.getJSON(url, function(result) {
console.log(result);
$.each(result, function(i, field) {
var name = field.name;
var surname = field.surname;
var nickname = field.nickname;
var descritpion = field.descritpion;
var pic = field.pic;
$("#teamview").append("<div class='even gradeA'><p align='center' class='item-content'><img src="+pic+" width=100 > <br /> "+name+" "+surname+" - "+nickname+" <br />"+descritpion+"</p></div>");
});
});
});
</script>
此代码位于我使用PhoneGap构建混合移动应用程序的移动应用程序中!所以我有存储在数据库表中的图像的路径。我想获取图像以显示在应用程序内的div中。