赋值中添加空格疑问

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

justin-tldx

2016-12-06 16:06

<!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() +"&nbsp;分:"+time.getMinutes() +"&nbsp;秒:"+ time.getSeconds();
    document.getElementById("clock").value = attime;
  }
  var actTime = setInterval(clock,100);
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="50"  />
</form>
</body>
</html>

请问这段代码的问题在哪,为什么空格不能正常显示出来???显示出来的时&nbsp;,菜鸡求解,勿喷。。。

写回答 关注

1回答

  • 默默无问
    2016-12-06 16:41:08

    可以直接这样加空格,  attime= "时:" + time.getHours() +"     分:"+time.getMinutes() +"   秒:"+ time.getSeconds();,至于为什么错,没搞太明白。

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题