You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.5 KiB
Plaintext

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link href="../css/themes/default/jquery.mobile-1.4.5.min.css" rel="stylesheet" type="text/css" />
<link href="../css/themes/classic/theme-classic.css" rel="stylesheet" type="text/css" />
<script src="../js/jquery.js" type="text/javascript"></script>
<script src="../js/jquery.mobile-1.4.5.min.js" type="text/javascript"></script>
<script src="../Scripts/QueryString.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(document).on("pageshow", "#page_dtl", function () {
var _Html = "<table data-role=\"table\" id=\"temp-table\" data-mode=\"reflow\" class=\"ui-responsive table-stroke\">";
_Html += " <thead>";
_Html += " <tr>";
_Html += " <th data-priority=\"persist\">Month</th>";
_Html += " <th data-priority=\"1\">Minimum Temp</th>";
_Html += " <th data-priority=\"1\">Maximum Temp</th>";
_Html += " <th data-priority=\"2\">Precipitation (mm)</th>";
_Html += " <th data-priority=\"2\">Rainfall Days</th>";
_Html += " </tr>";
_Html += " </thead>";
_Html += " <tbody>";
_Html += " <tr>";
_Html += " <td>1</td>";
_Html += " <td>2</td>";
_Html += " <td>3</td>";
_Html += " <td>4</td>";
_Html += " <td>5</td>";
_Html += " </tr>";
_Html += " </tbody>";
_Html += " </table>";
$(_Html).appendTo('#DtlContent');
//刷新
$("#DtlContent").trigger("create");
$("#DtlContent").fieldcontain('refresh');
});
</script>
<style type="text/css">
body {
font-family: "Arial", "Microsoft YaHei", "黑体", "宋体",sans-serif;
}
</style>
</head>
<body>
<div id="page_dtl" data-role="page" data-theme="d">
<div data-role="header" data-theme="b" data-position="fixed" data-tap-toggle="false">
<h1>明细表</h1>
<a href="#" data-rel="back" class="ui-btn ui-corner-all ui-shadow ui-icon-back ui-btn-icon-left ui-btn-icon-notext">Back</a>
</div>
<div role="main" class="ui-content" data-theme="d">
<a></a>
<div id="DtlContent" data-role="controlgroup">
</div>
</div>
</div>
</body>
</html>