1 Star 1 Fork 0

trmatic/day2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
第二遍.html 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2017-02-16 20:45 . 第三天完善
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="第二遍.js"></script>
</head>
<body>
<script>
var music = [];
for (var i = 0; i < 5; i++) {
music.push("歌曲" + i);
}
var html = $$.map(music, function (v, i) {
return "<input type='checkbox'>" + v + "<br>";
}).join("");
document.body.innerHTML = html;
var btn = ["全选", "全不选", "反选"];
document.body.innerHTML += $$.map(btn, function (v, i) {
return "<button id=ID" + i + ">" + v + "</button>"
}).join("");
new $$("#ID0")[0].onclick = function () {
alert(1);
console.log(1);
}
function toString(ele) {
return Object.prototype.toString(ele);
}
toString.call([1]); //[object Array]
[1].toString(); //1
console.log(toLocaleString.apply([1, 3]));
console.log({}.toString.call([1]));
console.log(Object.prototype.toString.call([1]));
console.log([1].toString());
console.log(typeof toString);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/trmatic/day2.git
git@gitee.com:trmatic/day2.git
trmatic
day2
day2
master

搜索帮助