
js
spfLinux
这个作者很懒,什么都没留下…
展开
-
JS JSON
序列化对象 对象序列化是指将对象的状态转换为字符串,也可将字符串还原为对象。ES5提供了内置函数JSON.stringify()和JSON.parse()用来序列化和还原JS对象。这些方法都使用JSON作为数据交换格式,JSON的全称是“JS Object Notation"——JS对象表示法,它的语法和JS对象和数组直接量的语法非常相近: o转载 2017-10-07 19:21:32 · 439 阅读 · 0 评论 -
JS——数组(引用传递)
//引用传递 function print(arr){ //两个不同名字指向同一个地址?副本 arr = new Array(3,4,5); console.log(arr); //3,4,5 } function print1(arr){ arr[0] = 9; } var arr1 = [1,2,3,4,5]; print(arr1); co原创 2017-10-27 09:23:15 · 324 阅读 · 0 评论 -
JS——十进制转二进制
var arr = []; var num = 44; if(num == 1){ arr[0] = 1; }else{ while(num != 0){ var tmp =num % 2; arr.push(tmp); num = (num - tmp) / 2; } } console.log(arr.reverse().join(原创 2017-10-27 10:04:48 · 1372 阅读 · 0 评论 -
JS——简单的登录框提示
function $(id){ return document.getElementById(id); } function showTip(){ $("uname-show").innerHTML = "用户名6-18位"; } function hideTip(){ if($("uname").value == ""){ //注意这里是value原创 2017-10-27 17:41:28 · 1396 阅读 · 0 评论 -
JS——文本框验证
Document 用户名称: 用户密码: 重复密码: //1、文本框获取焦点时,提示,用户名称6-18位 //2、文本框失去焦点时,判断,用户名称是否为空并给出相应提示(用户名不能为空/通过) //3、upwd获取焦点时,提示,密码6-18位 //4、upwd失去焦点时,判断,密码是否为空并给出提示(参考文本框提示) //5、cpwd原创 2017-10-27 19:14:54 · 2206 阅读 · 0 评论 -
JS——Constructor(构造器)模式
Constructor是一种在内存已分配给该对象的情况下,用于初始化新创建对象的特殊方法。模式结构图://基本构造器function Car(model, year, miles) { this.model = model; this.year = year; this.miles = miles; this.toString = function(){转载 2017-10-28 14:42:38 · 852 阅读 · 0 评论 -
mysql+php+ajax实现登录(无加密)
前端:common.cssbody,h1,h2,h3,h4,h5,h6,ul,ol,dl,dd,pre,p{ margin:0; padding: 0; border: 0;} login1.css#head { margin-left: 200px; margin-top: 20px; margin-bottom: 20px;}#head>span { displ原创 2017-11-07 11:50:00 · 576 阅读 · 0 评论 -
php+mysql+ajax实现注册(无加密)
前端:common.cssbody,h1,h2,h3,h4,h5,h6,ul,ol,dl,dd,pre,p{ margin:0; padding: 0; border: 0;} reg.cssa { text-decoration: none;}#head { margin-left: 200px; margin-top: 20px; margin-bottom:原创 2017-11-07 19:28:09 · 754 阅读 · 0 评论 -
JS——二级下拉框
Document var province = ["黑龙江","吉林","辽宁"]; function loadprovince() { var opts = ""; for(var i=0;i<province.length;i++){ opts += ""+province[i]+""; } $("province").inner转载 2017-10-30 14:31:58 · 508 阅读 · 0 评论 -
JS——我的第一个AJAX程序
common.js//common.jsfunction $(id){ return document.getElementById(id);}var xhr;function createXhr() { if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); return xhr; }else{ xhr = ne转载 2017-10-30 17:30:40 · 483 阅读 · 0 评论 -
JS——我的第二个AJAX程序
common.js//common.jsfunction $(id){ return document.getElementById(id);}var xhr;function createXhr() { if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); return xhr; }else{ xhr = ne原创 2017-10-30 17:47:47 · 450 阅读 · 0 评论 -
JS—按钮颜色切换
Document 按钮1 按钮2 按钮3 //设置背景颜色 //如果设置参数函数会节省函数数量吧 //设置flag+参数函数 flag = "btn1"; function btn1(){ document.getElementById("btn2").style.color = "black"; document.getElementById("b原创 2017-10-13 11:24:55 · 2937 阅读 · 3 评论 -
JS—点击链接切换隐藏的内容
Document a { cursor: pointer; color: red; } #p1, #p2 { display: none; } 显示内容1 显示内容2 11111 22222 flag = "p1"; function con(i){ document.getElementById(flag).style.原创 2017-10-13 11:37:41 · 570 阅读 · 0 评论 -
JS—循环切换内容
Document a { cursor: pointer; color: red; } p { display: none; } 循环切换内容 11111 22222 33333 //可以换成切换图片等等 flag = 0; pre = 0; function con(){ var cons = document原创 2017-10-13 11:56:22 · 968 阅读 · 0 评论 -
JS——我的第三个AJAX程序(带数据库的用户名输入验证,模仿注册)
前端:common.jsfunction $(id) { return document.getElementById(id);}function createXhr(){ var xhr; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); }else{ xhr = new ActiveXObject("Mi原创 2017-10-30 19:41:10 · 384 阅读 · 0 评论 -
JS—实现元素上下左右移动
Document a { cursor: pointer; } #cell { width: 30px; height: 30px; background: red; position: relative; left: 0; top: 0; } 友情提示:请按键盘上的上下左右键 function move() {转载 2017-10-13 14:10:05 · 5881 阅读 · 0 评论 -
JS—我的第四个AJAX程序(省市级联)
前端:commen.jsfunction $(id) { return document.getElementById(id);}function createXhr(){ var xhr; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); }else{ xhr = new ActiveXObject("Mi转载 2017-10-31 12:41:11 · 315 阅读 · 0 评论 -
看着头疼也难懂的JS程序
Document //运行结果:http://justjavac.com console.log((+[[]+(1>1)+(-~1>1.1)+(11>>>1)])[[(!!/-/+{})[111^111]+[[]+{}][!1&.1][1|1>>1|1]]+([111/[]+[]][+(1>1)][([]+{})[11-1>>1]+[[],[]+{}+[]][[]+1][1]+(/^/转载 2017-10-31 14:46:52 · 367 阅读 · 0 评论 -
JS——判断一个字符是否是数字 || 英文 || 中文
var input = prompt("请输入:"); var result1 = !isNaN(input); var result2 = ((input >= 'A' && input = 'a' && input <= 'z')); var result3 = (input >= '\u4e00' && input <= '\u9fa5'); console.log("是数字转载 2017-10-23 14:59:49 · 5189 阅读 · 0 评论 -
JS—我的第五个AJAX程序(省市级联、JSON传递)
前端:common.jsfunction $(id) { return document.getElementById(id);}function createXhr(){ var xhr; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); }else{ xhr = new ActiveXObject("Mi原创 2017-10-31 17:39:02 · 473 阅读 · 0 评论 -
JS—我的第六个AJAX程序(前端从数据库中获取数据库中数据,JSON传输)
前端:common.jsfunction $(id) { return document.getElementById(id);}function createXhr(){ var xhr; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); }else{ xhr = new ActiveXObject("Mi原创 2017-10-31 19:28:51 · 2828 阅读 · 0 评论 -
我的第七个AJAX的程序(XML数据传输)
前端:index.html Document getMsg function getMsg() { var xhr = createXhr(); xhr.open("get","Student.xml",true); xhr.onreadystatechange = function() { if(xhr.readyState == 4转载 2017-11-01 11:26:05 · 457 阅读 · 0 评论 -
我的第八个AJAX程序(XML数据传输)
前端:common.jsfunction $(id) { return document.getElementById(id);}function createXhr(){ var xhr; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); }else{ xhr = new ActiveXObject("Mi转载 2017-11-01 15:37:49 · 393 阅读 · 0 评论 -
JS——求某年某月某天是多少天
var year = Number(prompt("输入年:")); var month = Number(prompt("输入月:")); var day = Number(prompt("输入日:")); var flag = 0; if((year % 4 == 0 && year % 100 !=0) || (year % 400) == 0){ flag = 1原创 2017-10-24 15:57:57 · 1052 阅读 · 0 评论 -
JS-计算某年某月某日星期几
var year = Number(prompt("请输入年:")); var month = Number(prompt("请输入月:")); var day = Number(prompt("请输入日:")); var totaldays = 0; for(var i = 1900;i < year;i++) { if((i % 4 == 0 && i % 100 !=原创 2017-10-24 19:08:33 · 2410 阅读 · 1 评论 -
JS——对三个数进行排序(降序)
要求:最终结果(num1是最大,num2是中间值,num3最小)第一种方法:(对每种情况进行判断)function numsort(num1,num2,num3) { var max = 0, mid = 0, min = 0; //num1 >= num2 >= num3 if(num1 >= num2 && num1 >= num3 && num2 >= num3){原创 2017-10-24 19:33:47 · 4650 阅读 · 0 评论 -
我的第九个AJAX程序(注册页面)
前端:common.jsfunction $(id) { return document.getElementById(id);}function createXhr(){ var xhr; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); }else{ xhr = new ActiveXObject("Mi原创 2017-11-01 16:43:07 · 633 阅读 · 0 评论 -
JS——错误处理
//错误处理 闪退很不好 输入-1,3345等 var n = 666.555; var d = prompt("请输入小数位数"); try{ var result = n.toFixed(d); console.log(result); }catch(err){ alert("小数位数必须介于0-100之间"); console.log(String转载 2017-11-17 14:32:36 · 663 阅读 · 0 评论 -
JS——避免使用全局变量
(function(){ var str1 = "欢迎"; var str2 = "欢迎来到个人主页"; document.getElementById("title").innerHTML = str1; document.getElementById("p1").innerHTML = str2; })(); 匿名函数:什么是: 定义函数时不指定函数名转载 2017-11-18 11:24:58 · 1307 阅读 · 0 评论 -
JS面试题——声明提前
var a = 10; function test(){ //hoist 声明提前 a = 100; console.log(a); //100 var a; //坑 这里是声明,会提前,会提前到当前作用域最前面,也就是这个函数的开始处,成为一个函数内的局部变量 console.log(a); //100 } test(); console.lo转载 2017-11-15 09:22:49 · 552 阅读 · 0 评论 -
JS——分页浏览横向图片(类轮播)
common.jsfunction $(id) { return document.getElementById(id);}function $_tag(tag) { return document.getElementsByTagName(tag);}index.html Document a { cursor: pointer; } .div1原创 2017-11-06 08:39:47 · 1430 阅读 · 0 评论 -
JS——[]==[]
console.log([] == []); // false console.log({} == {}); //false console.log([{}] == [{}]); // flase console.log(Function); console.log(String);[] = []falsewhy?because javascript转载 2017-11-15 09:43:26 · 941 阅读 · 0 评论 -
JS——String坑1
var str = [1,2,3,4,5]; //字符数组,数组 var str1 = str; //引用赋值 str1 = str; str1.length--; console.log(str.length); //4 console.log(str1.length); //4 console.log(str); //[1,2,3,4] console.log(st转载 2017-11-15 10:03:39 · 357 阅读 · 0 评论 -
JS——最简单的验证码程序(不区分大小写)
var code = "E6sD"; console.log(code.toUpperCase()); console.log(code.toLowerCase()); console.log(code); do{ var input = prompt("请输入验证码"+code); code = code.toLowerCase(); input = input转载 2017-11-15 11:28:28 · 5509 阅读 · 0 评论 -
JS——编码,解码
1、有点笨的方法var msg = "小笑哈"; function encode(msg){ //编码 var code = ""; for(var i=0;i<msg.length;i++){ var ca = msg.charCodeAt(i); //不足5位,补足5位,加0 /*if(ca < 10){ //遇不到这样的情况 ca =转载 2017-11-15 11:54:26 · 292 阅读 · 0 评论 -
闭包——嵌套函数
function outer(){ //作用域1 window var i = 1; //2 return function() {//2 console.log(i++); //3 } } /* outer { i:1; function:匿名函数 } 出栈顺序: 1、outer释放不了,内层函数不让释放; v(wi转载 2017-11-20 13:09:45 · 431 阅读 · 0 评论 -
JS——获取鼠标位置(坐标)
Document // 说明:获取鼠标位置// 整理:http://www.codebit.cn// 来源:http://www.webreference.comfunction mousePosition(ev){ if(ev.pageX || ev.pageY){ return {x:ev.pageX, y:ev.pageY}; } return {转载 2017-11-06 15:23:44 · 748 阅读 · 0 评论 -
JS——坑2(函数不调用不执行,闭包)
Document one two three four var btns = document.getElementsByTagName("button"); for(var i=0;i<btns.length;i++){ btns[i].onclick = function(){ //函数定义 alert(i+1); //都是5!!!!!! }转载 2017-11-20 15:12:39 · 5141 阅读 · 0 评论 -
JS——闭包(面试题)
Document //闭包 function fun(){ var n = 999; nAdd = function(){n++}; return function(){ console.log(n); } } var get = fun(); get(); //999 nAdd(); //n++ get(); //1000转载 2017-11-20 15:45:30 · 433 阅读 · 0 评论 -
JS——OOP1(console.dir)
Document //面向对象 OOP //{} == {} false 两个对象 两个地址 地址比较 var stu1 = { sname:"XXX", sage:11, intro(){ console.log("I am XXX"); } } console.dir(stu1); //输出结构 浏览器做了排序,内存中是没有这个转载 2017-11-20 16:18:44 · 255 阅读 · 0 评论