新手上路
- 积分
- 28
- 金钱
- 28
- 注册时间
- 2017-6-15
- 在线时间
- 4 小时
|
<!doctype html>
<html>
<head>
<title>文档</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>
<body>
<header style="text-align: center">
<div align="center">文档1</div>
</header>
<table width="400" border="1" align="center">
<tr>
<td width="192">速度</td>
<td width="192"><!--#t-->M/S</td>
</tr>
</table>
</body>
</html>
服务器是官方的例程这个能 实现 但是我想不刷新整个网页 又做一个网页测试结果赋值出现问题请大家帮忙看看是什么情况
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<script type="text/javascript">
var min = "<!--#t-->";
var ctl_id = "show";
onload = function() {
Refresh();
setInterval("Refresh();", 1);
}
function Refresh() {
document.getElementById(ctl_id).innerHTML = parseInt(min );
}
</script>
<body>
<div id="show"></div>
</body>
</html>
|
|