1、首先点击a-radio-button软件右上角的设置。
2、其次进入设置界面选取时间管理。
3、最后进入时间管理界面内,就可以用鼠标点击数字,进行设置时间。
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta
http-equiv="Content-Type" content="text/htmlcharset=utf-8"
/>
<title>无标题文档</title>
<script
language="javascript">
var t = null
t =
setTimeout(time,1000)//开始执行
function time()
{
clearTimeout(t)//清除定时器
dt = new Date()
var
h=dt.getHours()
var m=dt.getMinutes()
var
s=dt.getSeconds()
document.getElementById("timeShow").innerHTML =
"现在的时间为:"+h+"时"+m+"分"+s+"秒"
t = setTimeout(time,1000)
//设定定时器,循环执行
}
</script>
</head>
<body>
<label
id="timeShow"></lable>
</body>
</html>
这种类型的代码网上是有资料的,自己多试试也是很好的。
//button要这样获取,不然会空指针positiveButton = (Button)dialog.findViewById(R.id.positive_button)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)