石榴子儿

导航

2021年11月12日 #

05 动画

摘要: 行内样式 display 隐藏 display:none 显示 display:原始值 如果没有原始值,则删除display样式 带时间的路线是左上角->右下角 $("div").show() $("div").show("slow") normal fast 行内样式 height 动画路线上<- 阅读全文

posted @ 2021-11-12 11:33 石榴子儿 阅读(18) 评论(0) 推荐(0) 编辑

2021年11月11日 #

04 Dom操作

摘要: $(function(){ //内部插入 =》 子节点 $(".append").click(function(){ //所有子元素的后面 // $("ul").append("<li>列表 append</li>"); $("<li>列表 append</li>").appendTo($("ul" 阅读全文

posted @ 2021-11-11 11:31 石榴子儿 阅读(27) 评论(0) 推荐(0) 编辑

2021年11月10日 #

03 jQuery 事件

摘要: e.stopPropagation(); //阻止事件冒泡 e.preventDefault(); //阻止默认行为 rest submit a[href] 阅读全文

posted @ 2021-11-10 16:48 石榴子儿 阅读(19) 评论(0) 推荐(0) 编辑

2021年11月9日 #

jQuery02 属性和样式

摘要: 没有参数时获取 带参数时设置 html 包含html标签的代码 div<span>span</span> text 纯文本 divspan val 交互控件(表单控件)的值 "" 在设置时,html会解析其中的标签 ,text不会解析,只是原样输出 var html=$("div").html(); 阅读全文

posted @ 2021-11-09 12:13 石榴子儿 阅读(10) 评论(0) 推荐(0) 编辑

2021年11月8日 #

jQuery基础

摘要: js=>jq jq=$(js/dom) jq=$(div) jq=$("<li>列表</li>") jq=>js [0] js=jq[0] js=$(div)[0] $(document).ready(function(){ }) $().ready(function(){ }) 阅读全文

posted @ 2021-11-08 11:32 石榴子儿 阅读(18) 评论(0) 推荐(0) 编辑

2021年11月5日 #

dom

摘要: document.querySelector(); 对象 document.querySelectorAll(); 数组 childNodes 文本节点 children 不包含文本节点 attributes 解决非元素属性 *click *chage 单选、多选状态改变 下拉框选项改变 文本框的值 阅读全文

posted @ 2021-11-05 17:30 石榴子儿 阅读(25) 评论(0) 推荐(0) 编辑

2021年11月4日 #

创建对象js

摘要: var student={ id:10001, name:"张三", scores:[ {subject:"html",score:90}, {subject:"JS",score:90} ] } //function function Student(id,name){ this.id=id; t 阅读全文

posted @ 2021-11-04 16:40 石榴子儿 阅读(8) 评论(0) 推荐(0) 编辑

js基本语法2

摘要: var reg1=/\d/ var reg2=new RegExp("\d"); /* \d 0-9任意一个数字 \D(任意一个非数值) [] 匹配其中的任意一个字符 [0-9] \d\ 12 => [1][2] 或 12 [12a] 1、2、a [a-zA-Z0-9_] [^] 非其中的任意一个字 阅读全文

posted @ 2021-11-04 16:39 石榴子儿 阅读(20) 评论(0) 推荐(0) 编辑

2021年11月2日 #

js基本用法

摘要: 1、 <div class="div" onclick="alert(0)">点我</div> 2、 <script> window.onload=function(){ var div= document.querySelector(".div"); div.onclick=function(){ 阅读全文

posted @ 2021-11-02 15:04 石榴子儿 阅读(46) 评论(0) 推荐(0) 编辑

2021年11月1日 #

1

摘要: 头部加链接要加 target="_top" 生成分组:() 用括号进行分组,这样可以更加明确要生成的结构,特别是层次关系 命令:(.foo>h1)+(.bar>h2) 得到代码如下: <div class="foo"> <h1></h1> </div> <div class="bar"> <h2>< 阅读全文

posted @ 2021-11-01 19:55 石榴子儿 阅读(17) 评论(0) 推荐(0) 编辑