1 Star 0 Fork 0

DanielZhao/HtmlDemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
demo.html 515 Bytes
一键复制 编辑 原始数据 按行查看 历史
DanielZhao 提交于 2016-06-01 16:59 . Initial
<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
</head>
<body>
<h1 id="title">我的第一个标题</h1>
<p>我的第一个段落。</p>
<script type="text/javascript">
var count=0;
// setInterval("repeat()",1000);//可以这个样子
setInterval(repeat,1000);//可以这个样子
// setInterval(repeat(),1000);//不能这个样子
function repeat () {
count++;
$("#title").html(count);
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/danielzhao/HtmlDemo.git
git@gitee.com:danielzhao/HtmlDemo.git
danielzhao
HtmlDemo
HtmlDemo
master

搜索帮助