摘要: 最简单,但是有缺点 var city = document.getElementById('city'); city.innerHTML +="<li>广州</li>>"; // 原来的city和下面的li会全部受影响,原来绑定到他们的方法可能会失效 折中的方法 var city = documen 阅读全文
posted @ 2021-03-27 17:53 该显示昵称已被使用了 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 先看看run case的流程 阅读全文
posted @ 2021-03-27 11:01 该显示昵称已被使用了 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 先看看多少代码量 import os file_types = ['py', 'html', 'css', 'js', ] def count_code_nums(file): """获取单个文件的行数 """ with open(file, mode='rb') as f: return len( 阅读全文
posted @ 2021-03-27 08:48 该显示昵称已被使用了 阅读(104) 评论(0) 推荐(0) 编辑
摘要: import os file_type = ['py', 'html', 'css', 'js', ] def count_code_nums(file): """获取单个文件的行数 """ with open(file, mode='rb') as f: return len(f.readline 阅读全文
posted @ 2021-03-27 08:28 该显示昵称已被使用了 阅读(199) 评论(0) 推荐(0) 编辑