我对编码很新,我正在为在线大学做一个项目。 我有一个使用myeclise和jquery编码的基本phonegap应用程序。 如何创建表并将图像插入表中? 我已经从w3schools复制了代码,但它似乎不起作用,当我尝试进入页面时出现蓝色圆形加载图标。
<table data-role="table" class="ui-responsive">
<tbody>
<tr>
<td><img src="http://www.bodyenlightenment.me/blog/wp-content/uploads/DoGrainsBreadsandCerealsHaveaPlaceintheN_99C5/iStock_000004292161XSmall.jpg" alt="HTML5 Icon" style="width:128px;height:128px;"></td>
<td><img src="http://thegreentribe.com/wp-content/uploads/2014/06/People-Natural-Beauty-Medium.jpeg" alt="HTML5 Icon" style="width:128px;height:128px;"></td>
<td><img src="http://media.digitalcameraworld.com/wp-content/uploads/sites/123/2013/08/Summer_portrait_ideas_atmospheric_pictures_people_CAN64.masterclass.finished.jpg" alt="HTML5 Icon" style="width:128px;height:128px;"></td>
<td><img src="https://iso.500px.com/wp-content/uploads/2015/03/designer_2.jpeg" alt="HTML5 Icon" style="width:128px;height:128px;"></td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
我在论坛中搜索过,但没有找到真正回答这个简单问题的内容。我在MyEclipse Mobile Web Simulator上运行应用程序。
答案 0 :(得分:0)
如果没有特别需要,请勿在移动应用中包含外部来源,原因有三:
由于加载错误的用户体验。
您的应用会导致流量,这对某些用户来说意味着他们会有成本。
安全问题。可以通过外部源注入代码。
如果您需要包含外部来源,则必须将其归化,请按照此处的文档进行操作:http://cordova.apache.org/docs/en/dev/guide/appdev/whitelist/index.html