我目前正在使用 JQuery 读取包含照片幻灯片数据的外部 .json 文件
照片幻灯片.json
[
{
"title" : "my tile",
"image" : "xx.jpg",
"url" : "www.example.com",
"firstline" : "woow",
"secondline" : "the weather is fine"
},
.....
.....
]
<script type="text/javascript" >
var photos;
$.getJSON(
"lang/en/photo-slideshow.json",
function(result) {
photos = result;
}
);
<script>
该脚本在加载时间较长的页面上运行良好!在页面加载速度非常快(例如 1 秒)时,json 文件不会t seem to be read completely and the slideshow doesn
启动。