- 浏览: 47960 次
- 性别:
- 来自: 西安
文章列表
<?xml version="1.0" encoding="UTF-8"?>
<?xml:stylesheet type="text/xsl" href="student.xsl"?>
<students>
<student ID="P101">
<name>张三</name>
<sex>女</sex>
<birthday>1978-01-01</birt ...
<script language=JavaScript>
var now = new Date();
function GetServerTime()
{
var urodz = new Date("12/31/2011 23:59:59");
now.setTime(now.getTime()+250);
days = (urodz - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (urodz - now) / 1000 / 60 / 60 - (24 * ...
<html>
<head>
<script language="javascript" type="text/javascript">
function a()
{
setTimeout("form1.bt.click();",1000);
}
function b()
{
form1.action="page2.html";
form1.submit();
}
</script>
<title& ...