随笔分类 -  javascript

摘要:$.fn.serializeObject = function() { var o = {}; var a = this.serializeArray(); $.each(a, function() { if (o[this.name] !== undefined) { if (!o[this.na 阅读全文
posted @ 2016-09-02 10:52 N神3 阅读(16183) 评论(1) 推荐(0) 编辑
摘要:javascript splice() //删除数组成员 pop() //删除数组成员 jquery $.type(aaa) //判断对象类型 阅读全文
posted @ 2016-08-11 18:36 N神3 阅读(173) 评论(0) 推荐(0) 编辑
摘要:<html> <body> <textarea id="content"></textarea> <script> var ele = document.getElementById("content"); ele.value = ele.value + "追加精彩内容"; </script> </ 阅读全文
posted @ 2016-08-04 15:44 N神3 阅读(21210) 评论(0) 推荐(1) 编辑
摘要:1.获取iframe对象 var doc=document.getElementById('frameId').contentWindow.document; //var doc=parent.document.getElementById('frameId').contentWindow.docu 阅读全文
posted @ 2016-07-21 18:28 N神3 阅读(1342) 评论(0) 推荐(0) 编辑
摘要:测试->运行环境chrom console >var aaa = {a:1,b:2,c:function(){console.log(this.a)}} 运行结果:undefined >aaa.c(); 运行结果:1 >var bbb = {a:10,b:20} 运行结果:undefined >aa 阅读全文
posted @ 2016-07-15 15:49 N神3 阅读(208) 评论(0) 推荐(0) 编辑
摘要:jquery.ajaxfileupload.js上传插件,利用iframe提交不刷新页面功能完成。 使用方法 阅读全文
posted @ 2016-07-15 15:25 N神3 阅读(985) 评论(0) 推荐(0) 编辑
摘要:闭包:让函数内的变量,可以让外部访问和修改。即从外部读取局部变量 实例一: 使用: person.getName(); //结果:name='zhangsan' person.setName('wangwu'); //设置属性值 person.getName();//结果:name='wangwu' 阅读全文
posted @ 2016-07-12 16:37 N神3 阅读(176) 评论(0) 推荐(0) 编辑
摘要:function employee(name, job, born) { this.name = name; this.job = job; this.born = born;} function house() //这个是新的类{ this.addr = "beijing"; //var fami 阅读全文
posted @ 2016-06-17 09:45 N神3 阅读(300) 评论(0) 推荐(0) 编辑
摘要:< script type = "text/javascript" >function Person() { // 属性 this.head = 1; this.eye = 2; // 方法 this.eat = function () { alert("吃东西"); } } //扩展类的方法 Pe 阅读全文
posted @ 2016-06-16 19:12 N神3 阅读(151) 评论(0) 推荐(0) 编辑
摘要:闭包实例: function a(){ var i=0; function b(){ alert(++i); } return b; } var c=a(); c(); 个人理解闭包: 由于外部调用函数内部的函数,而且内部函数依赖于外部函数的变量,所有就生成闭包在闭包内部创建自己依赖的变量。 当它第 阅读全文
posted @ 2016-06-14 17:43 N神3 阅读(127) 评论(0) 推荐(0) 编辑
摘要:<div id="test"><div></div><div></div></div><script>function getDom() {var s= document.getElementById("test");var chils= s.childNodes; //得到s的全部子节点var p 阅读全文
posted @ 2016-05-12 18:27 N神3 阅读(175) 评论(0) 推荐(0) 编辑
摘要:参数:even (Function): 第奇数次点击时要执行的函数。 odd (Function): 第偶数次点击时要执行的函数。 示例:$("p").toggle(function(){ $(this).addClass("selected"); },function(){ $(this).rem 阅读全文
posted @ 2016-05-11 11:41 N神3 阅读(684) 评论(0) 推荐(0) 编辑