为了账号安全,请及时绑定邮箱和手机立即绑定

赋值中添加空格疑问

<!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 回答

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

赋值中添加空格疑问

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信