摘要:
<body> <table border="1px"> <tr> <td>年级</td> <td>性别</td> <td>姓名</td> <td>操作</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td><button class="a"& 阅读全文
摘要:
<script src="../week four/jquery-3.4.1.js"></script> <script> $('#id').click(function () { $('body').append('<div><input type="text" class="x"><input 阅读全文
摘要:
$('div').hide();//隐藏元素 $('div').show();//显示元素 $('div').toggle();//元素隐藏显示之间切换 $('button').click = function(){ $('div').fadeIn(3000,callback);//点击按钮,元素渐 阅读全文
摘要:
<script> //js寻找节点 document.getElementById('id').parentNode;//父级节点 document.getElementById('id').childNodes;//子集节点集 document.getElementById('id').first 阅读全文
摘要:
/*失去焦点*/ document.getElementById('input').onblur = function(){ console.log('失去焦点'); }//鼠标到input文本框外时,控制台显示失去焦点 /*获取焦点*/ document.getElementById('input 阅读全文
摘要:
var car = { color:'red', speed:80, weight:1.5, diver: function (n) { console.log(n*this.speed+'千米'); } }//定义对象,var 对象名 = {},大括号内为对象的属性,一个属性名对应一个属性值,属性 阅读全文
摘要:
function dg(x) { if (x==1) { return 1; } else if (x==2) { return 1; } else { return dg(x-1)+dg(x-2); } } //递归,函数内部调用自己,例如波菲那契就是一个典型的递归,当x>=3时,函数返回值为前两 阅读全文
摘要:
var nm = function(){ console.log('这是匿名函数'); } nm(); //匿名函数,函数声明时没有函数名,使用时必须在声明函数的下面,否则将会按照未声明的变量处理报错 !function(){ console.log('自执行函数1'); }(); (functio 阅读全文
摘要:
var i = 5; var j = i++; var j1 = ++i; //这里j = i++;先算j = i,再算i = i + 1,所以j = 5,i = 6 //j1 = ++i;先算i = i + 1,再算j = i,所以j = 6,i = 6 var 阅读全文
摘要:
/*<script src="./js/js.js"></script>外部引入js文件方法,将此条写在head标签内 <script type="text/javascript"> function name() { alert("点我干嘛?") } </script>内部引入js方法,直接在he 阅读全文