是否可以在使用 Dreamweaver cs5.5 开发的 android 应用程序中放入多个 html5 文件?
我们可以在用dreamweaver cs5.5开发的android应用程序中自由放置多个html5文件吗?
示例:
page1.html
page2.html
page3.html
然后提供页面之间的超链接?
我尝试这样做,但浏览器拒绝加载页面。
can we freely put more than one html5 file in android app developed with dreamweaver cs5.5?
example:
page1.html
page2.html
page3.html
then provide hyperlinks between the pages?
I tried doing this but the browser refuses to load the pages.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 HTML 文件位于 assets 文件夹中,例如位于
/assets/html/
的子文件夹中,则以下内容将起作用...Java 代码可能如下所示:
在 HTML 中,您访问其他页面使用类似的东西:
If you have your HTML files in the assets folder, say in a subfolder in
/assets/html/
, the following would work...Java code could look something like this:
In HTML you access other pages using something like: