01 2019 档案

摘要:元字符和其含义 . 匹配除换行符以外的任意字符 \ 转义字符,使后一个字符改变原来的意思 \w 匹配字母、数字、下划线:[A-Za-z0-9_] \W 匹配特殊字符:[^A-Za-z0-9_] \s 匹配任意的空白符:[\t\r\n\f\v] \S 匹配非空白符 \d 匹配数字 \D 匹配非数字 \n 匹配一个换行符 \t 匹配一个制表符 \b ... 阅读全文
posted @ 2019-01-26 22:56 ming-yuan 阅读(2394) 评论(0) 推荐(0)
摘要:增删改操作: 查: 简单封装: 阅读全文
posted @ 2019-01-08 01:20 ming-yuan 阅读(857) 评论(0) 推荐(0)
摘要:jQuery 学习笔记 阅读全文
posted @ 2019-01-05 23:55 ming-yuan 阅读(189) 评论(0) 推荐(0)
摘要:jQuery对象就是通过jQuery包装DOM对象后产生的对象。jQuery对象是 jQuery独有的。 如果一个对象是 jQuery对象,那么它就可以使用jQuery里的方法 $("#i1").html()的意思是:获取id值为 i1的元素的html代码。 其中 html()是jQuery里的方法。相当于: document.getElementById("i1").innerHTML; ... 阅读全文
posted @ 2019-01-05 21:30 ming-yuan 阅读(171) 评论(0) 推荐(0)
摘要:import requests 请求方式: requests.get("https://www.baidu.com") requests.post("http://httpbin.org/post") requests.put("http://httpbin.org/put") requests.delete("http://httpbin.org/delet... 阅读全文
posted @ 2019-01-05 21:20 ming-yuan 阅读(167) 评论(0) 推荐(0)