两个问题?

来源:8-3 计时器setInterval()

慕村1994845

2016-10-22 22:39

看代码的注释处两个问题:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>定时器</title>
<script type="text/javascript">
  var attime;
  function clock(){
    var time=new Date();          
    attime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds();
    document.getElementById("clock").value = attime;
  } 
    var int=setInterval(clock,100)
    //如何让显示的时间的分和秒在一位数时前面有个零?
</script>
<style type="text/css">
*{padding:0; margin:0;}
.timer{width:100px; margin:300px auto;}
//这里怎么设置让timer可以在中间位置,也就是上下是auto;左右也是auto
//但是margin不能设置两个auto,这里该怎么办?
</style>
</head>
<body>
<div class="timer">
<form>
<input type="text" id="clock" size="10"  />
</form>
</div>
</body>
</html>


写回答 关注

1回答

  • laosun静
    2016-10-23 14:55:47

    问题1:   

    if ( num < 10) {   

     return "0" + num;}

    问题2:

    如果你只是想设置timer中的时间的位置的话,把line-height的值和width值设置成相同即可。

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题