上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 33 下一页

2020年2月27日

摘要: vue绑定类,是通过绑定class,class的内容是一个对象。 :class="{red:true,green:false}" 如果是true,就显示该类的样式,如果是false,就不显示该类的样式。 动态切换类,就是通过方法,改变绑定的true/false的值。 例子: 点击div实现颜色切换 阅读全文

posted @ 2020-02-27 14:14 猫头唔食鱼 阅读(646) 评论(1) 推荐(1) 编辑

2019年12月15日

摘要: 在js函数的参数里,可以传入一个函数作为参数 例子: var fn = (a)=>{ //如果这个参数a是函数,那么就执行这个函数,否则打印a的值 if(typeof a "function"){ a(); }else{ console.log(a) } } fn(test(2)) function 阅读全文

posted @ 2019-12-15 02:08 猫头唔食鱼 阅读(6985) 评论(0) 推荐(0) 编辑

2019年12月1日

摘要: let a = 'a' let b = true let c = NaN let d = null let e = undefined let f = {} let g = [] let h = {name:'zs'} let i = ['a'] let j = '1.03' let k = '1. 阅读全文

posted @ 2019-12-01 18:13 猫头唔食鱼 阅读(4392) 评论(0) 推荐(0) 编辑

摘要: let a = true let b = 2 let c = null let d = undefined let e = NaN let f = {} let g = [] toString() 吗? 不行 // 1.toString() console.log(a.toString()); // 阅读全文

posted @ 2019-12-01 17:24 猫头唔食鱼 阅读(1469) 评论(0) 推荐(0) 编辑

2019年11月21日

摘要: 1.python字典就相当于js里的对象 python字典里的键,要用双引号 例子: dic = {"name":"zs","age":12} 2.python字典的值的访问,使用中括号 dic = {"name":"zs"} print(dic["name"]) # zs 3.python字典属性 阅读全文

posted @ 2019-11-21 01:03 猫头唔食鱼 阅读(5779) 评论(0) 推荐(0) 编辑

摘要: 元组使用括号 tup = (1,2,3) tup2 = ([1,2],[3,4]) # 元组里的元素可以是数组 tup3 = (1,"a") # 元组的元素可以是不同类型的 tup4 = () # 空元组 元组的方法: 1.元组的长度 len() tup = (1,2,3) print(len(tu 阅读全文

posted @ 2019-11-21 00:27 猫头唔食鱼 阅读(1052) 评论(0) 推荐(0) 编辑

2019年11月20日

摘要: len(str)获取字符串长度 str = "abc" len(str) # 3 阅读全文

posted @ 2019-11-20 23:37 猫头唔食鱼 阅读(2103) 评论(0) 推荐(0) 编辑

摘要: str.replace(oldStr,newStr) 用新字符串替换旧字符串 例子: str = "我要睡觉" oldStr = "睡觉" newStr = "吃饭" str.replace(oldStr,newStr) # 我要吃饭 阅读全文

posted @ 2019-11-20 23:36 猫头唔食鱼 阅读(757) 评论(0) 推荐(0) 编辑

摘要: strip方法用于去除字符串首尾空格 例子: a = " abc " a.strip() # abc 阅读全文

posted @ 2019-11-20 23:29 猫头唔食鱼 阅读(12673) 评论(0) 推荐(0) 编辑

摘要: split把字符串分割成列表,和js里的split里的用法一样 str = "a,b,c" list = str.split(",") # [a,b,c] 阅读全文

posted @ 2019-11-20 23:27 猫头唔食鱼 阅读(2117) 评论(0) 推荐(0) 编辑

上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 33 下一页