JS里面插入document.getElementById("idname").innerHTML = "文本";网页里面没有显示
<styletype="text/css">body,div{margin:0px;padding:0px;}#time{margin:100pxauto;width:3...
<style type="text/css">
body,div{margin:0px;padding:0px;}
#time{
margin:100px auto;
width:300px;
height:40px;
background:pink;
line-height:40px;
text-align:center;
}
</style>
<script type="text/javascript">
function update_time(){
var date = new Date();
var time = date.getHours() + ":" +date.getMinutes()+":"+date.getSeconds();
document.getElementById('show').innerText = time;
}
</script>
所有浏览器都试了都不显示 展开
body,div{margin:0px;padding:0px;}
#time{
margin:100px auto;
width:300px;
height:40px;
background:pink;
line-height:40px;
text-align:center;
}
</style>
<script type="text/javascript">
function update_time(){
var date = new Date();
var time = date.getHours() + ":" +date.getMinutes()+":"+date.getSeconds();
document.getElementById('show').innerText = time;
}
</script>
所有浏览器都试了都不显示 展开
展开全部
你的代码里写的是innerText
DOM里是否有id为show的元素
你的function没有执行
更多追问追答
追问
我改成innerHTML也没有显示,html代码里面有show元素。至于您说的function没有执行希望您说得再详细一点,谢谢~PS我是按照教学视频写的这些代码,但是不知道哪错了
追答
你看我的在线演示,是可以有显示的。
http://jsfiddle.net/a81u3t9x/
因为你贴的代码不全,我没法判断,如果可以的话,把代码都贴上来吧。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |