摘要: 卸载链接 安装 官网链接 阅读全文
posted @ 2021-08-26 21:23 ice猫猫3 阅读(33) 评论(0) 推荐(0) 编辑
摘要: sudo npm uninstall npm -g 阅读全文
posted @ 2021-08-26 17:53 ice猫猫3 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 原文 1 string = "good" #类型为字符串 2 print("string=%s" %string) #输出的打印结果为 string=good 阅读全文
posted @ 2021-08-26 16:57 ice猫猫3 阅读(779) 评论(0) 推荐(0) 编辑
摘要: Document对象代表整个html文档,可用来访问页面中的所有元素,是最复杂的一个dom对象,可以说是学习好dom编程的关键所在。 Document对象是window对象的一个成员属性,通过window.document来访问,当然也可以直接使用document。 原文 阅读全文
posted @ 2021-08-26 10:06 ice猫猫3 阅读(206) 评论(0) 推荐(0) 编辑