摘要: 字面量(常量)就是不变的量,例如:abc 120。在JS中字面量(常量)要用 ‘’单引号括起来。变量就是不确定的值 ,例如 var number=12。在JS中变量不用 '' 单引号括起来。 阅读全文
posted @ 2013-02-26 22:36 yexingwen 阅读(866) 评论(0) 推荐(0) 编辑
摘要: JS点击显示隐藏密码思路:获取元素,判断点击,如果DIV显示就隐藏,如果DIV隐藏就显示出来。1 if(DIV是显示的){2 div.style.display='none';3 }4 else{5 div.style.display='block'; 6 }代码:style:1 <style>2 #text{display:block;width:300px;cursor:pointer;height:20px;border:solid 1px #CCC;}3 #menu{display:none;width:300px;height:100px; 阅读全文
posted @ 2013-02-26 21:45 yexingwen 阅读(34909) 评论(1) 推荐(0) 编辑
摘要: 思路:1、首先用把密码框用txt暂时替代,并赋上默认值 <input type="text" value="请输入密码" /> 2、当文本框获取焦点后,把默认值清空,把type改为password。 3、当文本框失去焦点后,把type改为txt,把默认值设为“请输入密码”。JS代码: 1 window.onload=function(){ 2 3 var input=document.getElementById('input'); 4 5 input.onfocus=function(){ 6 7 if(this.value 阅读全文
posted @ 2013-02-26 12:16 yexingwen 阅读(7225) 评论(0) 推荐(0) 编辑