用html做成一个网页,然后在手机上用浏览器打开,就相当于一个apk。而HBuilder提供了这个打包功能,让你把浏览器和html页面打包,就类似于一个手机上运行的app
通过嵌套iframe 实现将多个页面集成在一个页面上<script type="text/javascript">
$(function () {
document.getElementById("ifm").src =""//Url地址
$("#ifm").load(function () {
var h = document.body.clientHeight
var w = document.body.clientWidth
document.getElementById("ifm").height = h + "px"
document.getElementById("ifm").width = w + "px"
})
})
</script>
<body style="overflow-y:hiddenoverflow-x:hidden">
<div id="pageone" style="">
<iframe name="ifm" id="ifm" scrolling="yes" style="background-color: transparent" marginwidth="0" marginheight="0" frameborder="0">
</iframe>
</div>
</body>