当前位置:  编程技术>WEB前端
本页文章导读:
    ▪pcode.linq       一, 查询条件where:var res = $pcode.linq([1, 2, 3, 4, 5, 6, 7, 8, 9]) .where(function (item, index) { return this > 4; }) .toArray();console.log(res);//结果:[5, 6, 7, 8, 9] var res = $pcode.........
    ▪JS常用代码收集      1.document.write()不换行的输出,document.writeln()换行输出2.JS中的注释为//3.传统的HTML文档顺序是:document- >html- >(head,body) 4.一个浏览器窗口中的DOM顺序是:window- >(navigator,screen,history,location,document.........
    ▪jQuery类库架构分析      这两天阅读了jQuery源码,感叹JS的神奇。在此针对jQuery架构基础解读。jQuery类库框架的分析:/** * @author Nightink * @date 2013-02-02 * Ink架构基础的是 元素对象和命名空间 * 参数了jQuery架构模式 * 此.........

[1]pcode.linq
    来源:    发布时间: 2013-11-06

 

一, 查询条件where:

var res = $pcode.linq([1, 2, 3, 4, 5, 6, 7, 8, 9])
.where(function (item, index) {
return this > 4;
})
.toArray();
console.log(res);
//结果:[5, 6, 7, 8, 9]
var res = $pcode.linq([{ val: 1, name: "item1" }, { val: 2, name: "item2"}])
.where(function (item, index) {
return this.val == 1;
})
.toArray();

console.log(JSON.stringify(res));
//结果:[{"val":1,"name":"item1"}]

 

二, 查询变形select:

var res = $pcode.linq([1, 2, 3, 4, 5, 6, 7, 8, 9])
.where(function (item, index) {
return this > 4;
})
.select(function (item, index) {
return { val: this, index: index };
})
.toArray();

console.log(JSON.stringify(res));
//结果:[{"val":5,"index":0},{"val":6,"index":1},{"val":7,"index":2},{"val":8,"index":3},{"val":9,"index":4}]

三, 查询合并selectMerge:

var res = $pcode.linq([[1, 2], [3, 4, 5], [6, 7, 8, 9]])
.selectMerge(function (item, index) {
return this;
})
.toArray();

console.log(JSON.stringify(res));
//结果:[1,2,3,4,5,6,7,8,9]

四,排序

var res = $pcode.linq([1, 2, 3, 4, 5, 6, 7, 8, 9])
.order(function (item1, item2) { return item2 - item1; })
.toArray()

console.log(JSON.stringify(res));
//结果:[9,8,7,6,5,4,3,2,1]

五,查询结果:toArray, take, first, last, contain

var res = $pcode.linq([1, 2, 3, 4, 5, 6, 7, 8, 9])
.where(function () { return this % 2 == 0; })
.last();

console.log(JSON.stringify(res));
//结果:8

 

本文链接


    
[2]JS常用代码收集
    来源:    发布时间: 2013-11-06

1.document.write()不换行的输出,document.writeln()换行输出
2.JS中的注释为//
3.传统的HTML文档顺序是:document- >html- >(head,body)
4.一个浏览器窗口中的DOM顺序是:window- >(navigator,screen,history,location,document)
5.得到表单中元素的名称和值:document.getElementById( "表单中元素的ID號").name(或value)
6.一个小写转大写的JS: document.getElementById( "output ").value = document.getElementById( "input ").value.toUpperCase();
7.JS中的值类型:String,Number,Boolean,Null,Object,Function
8.JS中的字符型转换成数值型:parseInt(),parseFloat()
9.JS中的数字转换成字符型:( " "变量)
10.JS中的取字符串长度是:(length)
11.JS中的字符与字符相连接使用號.
12.JS中的比较操作符有:==等于,!=不等于, >, >=, <. <=
13.JS中声明变量使用:var来进行声明
14.JS中的判定语句结构:if(condition){}else{}
15.JS中的循环结构:for([initial expression];[condition];[upadte expression]) {inside loop}
16.循环中止的命令是:break
17.JS中的函数定义:function functionName([parameter],...){statement[s]}
18.当文件中出现多个form表单时.可以用document.forms[0],document.forms[1]来代替.
19.窗口:打开窗口window.open(),关闭一个窗口:window.close(),窗口本身:self
20.状態栏的设置:window.status= "字符";
21.弹出提示信息:window.alert( "字符");
22.弹出確认框:if(window.confirm("确定删除?")){...};
23.弹出输入提示框:window.prompt();
24.指定当前显示链接的位置:window.location.href= "URL "
25.取出窗体中的所有表单的数量:document.forms.length
26.关闭文档的输出流:document.close();
27.字符串追加连接符: =
28.创建一个文档元素:document.createElement(),document.createTextNode()
29.得到元素的方法:document.getElementById()
30.设置表单中所有文本型的成员的值为空:
var form = window.document.forms[0]
for (var i = 0; i <form.elements.length;i ){
if (form.elements.type == "text "){
form.elements.value = " ";
}
}
方法二:
$('#pp').find('form').form('clear')  jquery还有这个属性  清空所有的控件中的值
方法三
window.document.forms[0].reset(); //重置
31.复选按钮在JS中判定是否选中:document.forms[0].checkThis.checked (checked属性代表为是否选中返回TRUE或FALSE)
32.单选按钮组(单选按钮的名称必须相同):取单选按钮组的长度document.forms[0].groupName.length
33.单选按钮组判定是否被选中也是用checked.
34.下拉列表框的值:document.forms[0].selectName.options[n].value (n有时用下拉列表框名称加上.selectedIndex来確定被选中的值)
35.字符串的定义:var myString = new String( "This is lightsword ");
36.字符串转成大写:string.toUpperCase();字符串转成小写:string.toLowerCase();
37.返回字符串2在字符串1中出现的位置:String1.indexOf( "String2 ")!=-1则说明没找到.
38.取字符串中指定位置的一个字符:StringA.charAt(9);
39.取出字符串中指定起点和终点的子字符串:stringA.substring(2,6);
40.数学函数:Math.PI(返回圆周率),Math.SQRT2(返回开方),Math.max(value1,value2)返回两个数中的最在值,Math.pow(value1,10)返回

value1的十次方,Math.round(value1)四舍五入函数,Math.floor(Math.random()*(n 1))返回隨机数
41.定义日期型变量:var today = new Date();
42.日期函数列表:dateObj.getTime()得到时间,dateObj.getYear()得到年份,dateObj.getFullYear()得到四位的年份,dateObj.getMonth()得

到月份,dateObj.getDate()得到日,dateObj.getDay()得到日期几,dateObj.getHours()得到小时,dateObj.getMinutes()得到

分,dateObj.getSeconds()得到秒,dateObj.setTime(value)设置时间,dateObj.setYear(val)设置年,dateObj.setMonth(val)设置

月,dateObj.setDate(val)设置日,dateObj.setDay(val)设置星期几,dateObj.setHours设置小时,dateObj.setMinutes(val)设置

分,dateObj.setSeconds(val)设置秒[注重:此日期时间从0开始计]
43.FRAME的表示方式: [window.]frames[n].ObjFuncVarName,frames[ "frameName "].ObjFuncVarName,frameName.ObjFuncVarName
44.parent代表父亲对象,top代表最顶端对象
45.打开子窗口的父窗口为:opener
46.表示当前所属的位置:this
47.当在超链接中调用JS函数时用:(javascript :)来开头后面加函数名
48.在老的浏览器中不执行此JS: ><!-- //-- >
49.引用一个文件式的JS: <script type= "text/javascript " src= "aaa.js " > </script >
50.指定在不支持脚本的浏览器显示的HTML: <noscript > </noscript >
51.当超链和onCLICK事件都有时,则老版本的浏览器转向a.html,否则转向b.html.例:dfsadf
52.JS的內建对象

有:Array,Boolean,Date,Error,EvalError,Function,Math,Number,Object,
RangeError,ReferenceError,RegExp,String,SyntaxError,TypeErr

or,URIError
53.JS中的换行:\n
54.窗口全屏大小: <script >function fullScreen(){ this.moveTo

(0,0);this.outerWidth=screen.availWidth;this.outerHeight=screen.availHeight;}window.maximize=fullScreen; </script >
55.JS中的all代表其下层的全部元素
56.JS中的焦点顺序:document.getElementByid( "表单元素").tabIndex = 1
57.innerHTML的值是表单元素的值:如"how areyou"
,则innerHTML的值就是:how are you
2. 58.innerTEXT的值和上面的一样,只不过不会把这种標记显示出来.
59.contentEditable可设置元素是否可被修改,isContentEditable返回是否可修改的状態.
60.isDisabled判定是否为禁止状態.disabled设置禁止状態
61.length取得长度,返回整型数值
62.addBehavior()是一种JS调用的外部函数文件其扩展名为.htc
63.window.focus()使当前的窗口在所有窗口之前.
64.blur()指失去焦点.与FOCUS()相反.
65.select()指元素为选中状態.
66.防止用户对文本框中输入文本:
67.取出该元素在页面中出现的数量:document.all.tags( "div(或其它HTML標记符) ").length
68.JS中分为两种窗体输出:模態和非模態.window.showModaldialog(),window.showModeless()
69.状態栏文字的设置:window.status= '文字',默认的状態栏文字设置:window.defaultStatus = '文字. ';
70.添加到收藏夹:external.AddFavorite( "http://www.dannyg.com ";, "jaskdlf ");
71.JS中碰到脚本错误时不做任何操作:window.onerror = doNothing;指定错误句柄的语法为:window.onerror = handleError;
72.JS中指定当前打开窗口的父窗口:window.opener,支持opener.opener...的多重继续.
73.JS中的self指的是当前的窗口
74.JS中状態栏显示內容:window.status= "內容"
75.JS中的top指的是框架集中最顶层的框架
76.JS中关闭当前的窗口:window.close();
77.JS中提出是否確认的框:if(confirm( "Are you sure? ")){alert( "ok ");}else{alert( "Not Ok ");}
78.JS中的窗口重定向:window.navigate( "http://www.sina.com.cn ";);
79.JS中的打印:window.print()
80.JS中的提示输入框:window.prompt( "message ", "defaultReply ");
81.JS中的窗口滚动条:window.scroll(x,y)
82.JS中的窗口滚动到位置:window.scrollby
83.JS中设置时间间隔:setInterval( "expr ",msecDelay)或setInterval(funcRef,msecDelay)或setTimeout
84.JS中的模態显示在IE4行,在NN中不行:showModalDialog( "URL "[,arguments][,features]);
85.JS中的退出之前使用的句柄:function verifyClose(){event.returnValue= "we really like you and hope you will stay longer. ";}}

window.=verifyClose;
86.当窗体第一次调用时使用的文件句柄:onload()
87.当窗体关闭时调用的文件句柄:onunload()
88.window.location的属性: protocol(http:),hostname(www.example.com),port(80),host(www.example.com:80),pathname

( "/a/a.html "),hash( "#giantGizmo ",指跳转到相应的锚记),href(全部的信息)
89.window.location.reload()刷新当前页面.
90.window.history.back()返回上一页,window.history.forward()返回下一页,window.history.go(返回第几页,也可以使用访问过的URL)
91.
92.document.body.noWrap=true;防止链接文字折行.
93.变量名.charAt(第几位),取该变量的第几位的字符.
94. "abc ".charCodeAt(第几个),返回第几个字符的ASCii码值.
95.字符串连接:string.concat(string2),或用=进行连接
96.变量.indexOf( "字符",起始位置),返回第一个出现的位置(从0开始计算)
97.string.lastIndexOf(searchString[,startIndex])最后一次出现的位置.
98.string.match(regExpression),判定字符是否匹配.
99.string.replace(regExpression,replaceString)替换现有字符串.
100.string.split(分隔符)返回一个数组存储值.
101.string.substr(start[,length])取从第几位到指定长度的字符串.
102.string.toLowerCase()使字符串全部变为小写.
103.string.toUpperCase()使全部字符变为大写.
104.parseInt(string[,radix(代表进制)])强制转换成整型.
105.parseFloat(string[,radix])强制转换成浮点型.
106.isNaN(变量):测试是否为数值型.
107.定义常量的要害字:const,定义变量的要害字:var

 

本文链接

    
[3]jQuery类库架构分析
    来源:    发布时间: 2013-11-06

这两天阅读了jQuery源码,感叹JS的神奇。在此针对jQuery架构基础解读。

jQuery类库框架的分析:

/**
* @author Nightink
* @date 2013-02-02
* Ink架构基础的是 元素对象和命名空间
* 参数了jQuery架构模式
* 此案例用来分析jQuery框架结构
*/
(function(window) {

var rootInk, //保留原生Ink对象 利用闭包的形式,保留此对象可在页面运行过程中不被,垃圾回收
rootObject,
Ink = function(name, age) { //设定了返回Ink元素对象,并且创建了Ink的命名空间
return new Ink.prototype.init(name, age, rootInk);
};

//重写了Prototype原型链,针对框架库需求定制框架核心函数
Ink.fn = Ink.prototype = { //提供给Ink元素对象的方法
constructor: Ink,
//设置默认Ink对象长度为零
length: 0,
init: function(name, age, rootInk) { //简略init过程,演示结构。
if( !name ) {
return this;
}

//var o = new Object();
this.name = name;
this.age = age;
this.length ++;
//return o;
},
say: function() {
console.log('成员函数');
},
toArray: function() {
console.log('对象转换成数组');
},
eq: function(i) {
var length = this.length;
console.log(length);
}
};

//通过共享原型实现提供元素对象成员方法
Ink.prototype.init.prototype = Ink.fn;

//Ink库核心函数,通过插件机制实现类库内容的多样性
Ink.extend = Ink.fn.extend = function() {
var name, self = this, target = arguments[0];
if( typeof target === 'object' ) {
for ( name in target) {
self[name] = target[name];
};
}
console.log('继承函数');
};

//Ink.extend 提供Ink命名空间插件机制,
//可实现针对库的工具类函数存放,防止和其他类库发生命名冲突
Ink.extend({
log: function(str) {
console.log(str);
},
print_r: function(str) {
return str;
}
});

//Ink.fn.extend 提供的是Ink元素对象的插件机制
Ink.fn.extend({
review: function() {
console.log('重绘函数');
},
ajax: function() {
console.log('ajax');
}
});

rootInk = Ink('Nightink'); //初始化了原生对象
//test 闭包变量
//rootObject = { name: 'ink', age: '22', time: '2013-02-02' }

window.Ink = Ink;

})(window);

 

本文链接


    
最新技术文章:
▪css white-space:nowrap属性用法(可以强制文字不...
▪IE里button设置border:none属性无效解决方法
▪border:none与border:0使用区别
▪html清除浮动的6种方法示例
▪三个不常见的 HTML5 实用新特性简介
▪css代码优化的12个技巧
▪低版本IE正常运行HTML5+CSS3网站的3种解决方案
▪CSS Hack大全-教你如何区分出IE6-IE10、FireFox、Chr...
▪ie6,ie7,ie8完美支持position:fixed的终极解决方案
▪小技巧处理div内容溢出
▪html小技巧之td,div标签里内容不换行
▪纯CSS实现鼠标放上去改变文字内容
▪li中插入img图片间有空隙的解决方案
▪CSS3中Transition属性详解以及示例分享
▪父div高度不能自适应子div高度的解决方案
▪告别AJAX实现无刷新提交表单
▪从零学CSS系列之文本属性
▪HTML 标签
▪CSS3+Js实现响应式导航条
▪CSS3实例分享之多重背景的实现(Multiple background...
▪用css截取字符的几种方法详解(css排版隐藏溢...
▪页面遮罩层,并且阻止页面body滚动。bootstrap...
▪CSS可以做的几个令你叹为观止的实例分享
▪详细分析css float 属性以及position:absolute 的区...
▪IE6/IE7/IE8/IE9中tbody的innerHTML不能赋值的完美解...
▪CSS小例子(只显示下划线的文本框,像文字一...
▪可以给img元素设置背景图
▪不通过JavaScript实现的自动滚动视差效果
▪div+CSS 兼容小摘
▪CSS的inherit与auto使用分析
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3