首页 > 编程 > JavaScript > 正文

innerText 使用示例

2019-11-20 21:12:50
字体:
来源:转载
供稿:网友
复制代码 代码如下:

<html>
<head>
<script language = "javascript" type = "text/javascript">
function showTime(){
//在元素间的文本就是通过 对象 .innerText
document.getElementById("mytime").innerText = new Date().toLocaleString();
}
setInterval("showTime()",1000);
</script>
</head>
<body>
<span id = "mytime"></span>
</body>
</html>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表