我正在使用基本的bootstrap轮播模板(http://getbootstrap.com/examples/carousel/),当我使用此页面中的事件列表脚本代码时:http://developer.eventbrite.com/doc/widgets/#list,如下所示:
<script type='text/javascript' src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type='text/javascript' src="https://evbdn.eventbrite.com/s3-s3/static/js/platform/Eventbrite.jquery.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
Eventbrite({'app_key': "P47XBRPQTVS7YF64Z5"}, function(eb){
eb.organizer_list_events( {'id': 561037966, 'statuses': "live,started"}, function( response ){
document.write(eb.utils.eventList( response, eb.utils.eventListRow ));
});
});
});
</script>
我当然正在使用我的应用程序密钥和ID,它会提取信息,但我的引导程序模板加载然后完全变白,只显示事件。我尝试使用Google API脚本1.7.1和Bootstrap 1.11.1,但两者都给出了相同的结果。还注意到页面的加载永远不会停止,它会继续盘旋。还有其他人经历过这个吗?