上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 53 下一页
摘要: 模式描述 ^ 匹配输入字符串的开始位置。如果设置了 RegExp 对象的 Multiline 属性,^ 也匹配 '\n' 或 '\r' 之后的位置。 $ 匹配输入字符串的结束位置。如果设置了RegExp 对象的 Multiline 属性,$ 也匹配 '\n' 或 '\r' 之前的位置。 . 匹配除 阅读全文
posted @ 2021-02-08 16:55 博二爷 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 例子: SQL语句: 下载:https://pan.baidu.com/s/1KhIiNJRJc366N6Oiylfxvg 提取码: z627 更新: 例图: 下载地址: https://pan.baidu.com/s/1NJJdI-iPoqwvrE5t2SQuSA m8rg 阅读全文
posted @ 2021-02-08 10:11 博二爷 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 来源:https://www.cnblogs.com/sui776265233/p/10168052.html PyCharm的Find in Path功能提供了全局查找功能,快捷键为Ctrl + Shift + F。Find则是在当前文件查找,快捷键为Ctrl + F。这两个个功能非常实用。 Fi 阅读全文
posted @ 2021-02-07 17:59 博二爷 阅读(3356) 评论(0) 推荐(0) 编辑
摘要: jQuery: ID: var myElement = $("#id01"); 标签名: var myElements = $("p"); 类名: var myElements = $(".intro"); CSS选择器: var myElements = $("p.intro"); JavaScr 阅读全文
posted @ 2021-02-06 11:13 博二爷 阅读(38) 评论(0) 推荐(0) 编辑
摘要: js: 1 /** 2 * 3 */ 4 $(function(){ 5 $(document).on("click","a",function(){ 6 alert("点击成功"); 7 }); 8 9 $("#add").click(function(){ 10 $("#mydiv").appe 阅读全文
posted @ 2021-02-02 11:13 博二爷 阅读(144) 评论(0) 推荐(0) 编辑
摘要: <select class="form-control select_parent" name="type_name_1" > <option >请选择</option> <option value="集体活动">早操、组织生活和必须参加的集体活动</option> <option value="违 阅读全文
posted @ 2021-01-24 17:27 博二爷 阅读(53) 评论(0) 推荐(0) 编辑
摘要: $("#desktop a ").each(function(index){ var imgurl=$(this).find('img').attr('src'); alert(imgurl); } 阅读全文
posted @ 2021-01-23 18:45 博二爷 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 效果如下图所示: html: 1 <select id="select" class="sel"> 2 <option value="weiguo">魏国</option> 3 <option value="shuguo">蜀国</option> 4 <option value="wuguo">吴国 阅读全文
posted @ 2021-01-23 18:17 博二爷 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 方法描述 addClass() 向匹配的元素添加指定的类名。 after() 在匹配的元素之后插入内容。 append() 向匹配元素集合中的每个元素结尾插入由参数指定的内容。 appendTo() 向目标结尾插入匹配元素集合中的每个元素。 attr() 设置或返回匹配元素的属性和值。 before 阅读全文
posted @ 2021-01-10 16:34 博二爷 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1,摁住+-音量键 2,手机一头连上数据线 3,另一头连上电脑 会进入诊断状态,只需要退出诊断状态,就可以。 阅读全文
posted @ 2020-12-31 09:16 博二爷 阅读(657) 评论(1) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 53 下一页