我想分割我的html文件,因为在jQuery Mobile网站中,index.html与子页面等相当冗长。我正在将它用于内部iPad应用程序,因此它不需要任何跨浏览器支持或类似的东西,只需使用cordova webview。我是移动应用程序的新用户,因此我会分解我的html文件并将其调用到我的index.hmtl文件中,如下所示:
<html>
<head>
<script src="jquery.js"></script>
<script>
$( document ).ready(function() {
$(function(){
$("#includedContent-2").load("index-2.html");
$("#includedContent-3").load("index-3.html");
$("#includedContent-4").load("index-4.html");
$("#includedContent-5").load("index-5.html");
});
});
</script>
</head>
<body>
<div id="includedContent-2"></div>
<div id="includedContent-3"></div>
<div id="includedContent-4"></div>
<div id="includedContent-5"></div>
</body>
</html>