E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
returnthis
开发自己的JQuery框架
varDQuery={'name':'DQuery','version':'2016-06-05','getVersion':function(){console.log(this.version);
returnthis
hsd2012
·
2016-06-14 22:00
jquery
对象
构造函数
简易JS模板引擎
代码:String.prototype.render=function(arg){vardata=arg;
returnthis
.replace(/{{(.*?)}}
guoanyong
·
2016-06-14 19:38
javascript
js的trim()
1.通过原型创建字符串的trim()//去除字符串两边的空白String.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,""
mafan121
·
2016-06-12 18:00
js
trim
去除空白
jQuery实现高度自适应,适用于td中的textarea
jQuery.fn.extend({autoHeight:function(){
returnthis
.each(function(){var$this=jQuery(this);if(!
Max260657102
·
2016-06-09 22:29
jQuery
[AngularJS面面观] 4. scope中的$apply方法 - Digest Cycle的触发者
下面言归正传,来看看相关源代码:$apply:function(expr){try{beginPhase('$apply');try{
returnthis
.$eval(expr);
dm_vincent
·
2016-06-07 18:01
AngularJS
JavaScript
JavaScript中的this
①全局作用域下,this就是window(浏览器环境)(1)全局作用域下创建一个返回this的函数,this仍为全局对象(window);(2)但严格模式规定,全局作用域下的函数中的
returnthis
Wendelle
·
2016-05-26 23:00
jquery简单插件制作(fn.extend)完整实例
function(options){varsettings=$.extend({color:"#556b2f",backgroundColor:'#000',padding:'20px'},options);
returnthis
.css
懒人
·
2016-05-24 12:07
Java枚举类型你真的知道么?
"ThisisBBBB"); privateStringdesc; EnumType(Stringdesc){ this.desc=desc; } publicStringgetDesc(){
returnthis
.desc
u010235716
·
2016-05-24 10:00
java
jquery validator addMethod 方法的使用
varpattern=/^([0-9]*)+$/;
returnthis
.optional(element)||(!pattern.test(value));},"店铺名称不能为纯数字。")
kaixin2010
·
2016-05-24 10:26
jquery
validator
Cart 关于购物车里面需要封装的方法
publicclassCartimplementsSerializable{ //购物车里面的购物项集合 privateListitems=newArrayList(); publicListgetItems(){
returnthis
.items
Meng_fengyang
·
2016-05-23 00:00
购物车
c++中类中私有成员的调用?
QuestionclassA { private: intx; public: A() { x=90; } A(Aa1,Aa2) { a1.x=10; a2.x=20; } intgetX() {
returnthis
renwotao2009
·
2016-05-19 10:00
jquery.validate 扩展验证+异步验证
validate_expand.js//字符验证jQuery.validator.addMethod("stringCheck",function(value,element){
returnthis
.optional
e01014165
·
2016-05-18 18:29
jquery
validate
javascript基础:修改this指针
输入例子bindThis(function(a,b){
returnthis
.test+a+b;},{test:1})(2,3);输出例子6分析题目拆解该题目的要求是:封装一个函数bindThis,该函数有两个参数
Pines_Cheng
·
2016-05-17 00:37
javascript基础:this关键字
输入例子bindThis(function(a,b){
returnthis
.test+a+b;},{test:1})(2,3);输出例子6分析题目拆解该题目的要求是:封装一个函数bindThis,该函数有两个参数
Pines_Cheng
·
2016-05-16 00:00
javascript
Javascript的无new构建实例详解
varA=function(){returnA.prototype.init();}A.prototype={init:function(){this.age=50;console.log(this);
returnthis
hi丶小时候
·
2016-05-15 10:49
jQuery源码分析--event事件绑定
//7491行 bind:function(types,data,fn){
returnthis
.on(types,null,data,fn); }, //7498行 delega
u014787301
·
2016-05-13 22:00
jquery
源码
Javascript的无new构建
varA=function(){returnA.prototype.init();} A.prototype={init:function(){this.age=50;console.log(this);
returnthis
hi丶小时候
·
2016-05-13 17:00
js 面试的坑
functionadd(n){this.n=n;this.m=function(){
returnthis
.n/2;}}varA=newadd(20);alert(A.n+""+A.m());//2010A.n
cometwo
·
2016-05-10 22:00
JavaScript
函数
[Effective JavaScript 笔记] 第6条:了解分号插入的局限
functionPoint(x,y){ this.x=x||0; this.y=y||0;}Point.prototype.isOrigin=function(){
returnthis
.x
脚后跟着猫
·
2016-05-10 19:00
JS 设计模式 五(链式调用)
代码/*get不用callbackfunctionPerson(name){var_name=name;this.setName=function(name){_name=name;
returnthis
zchq88
·
2016-05-10 00:00
design-pattern
javascript
工具--js自定义HashMap
$size=function(){
returnthis
.$elements.length; }; //判断MAP是否为空 this.
McDullBro
·
2016-05-09 15:00
JavaScript
HashMap
js实现四则运算
Stack.prototype={ Init:function(){ this.STACKMAX=100; this.stack=newArray(this.STACKMACK); this.top=-1;
returnthis
.st
u012150590
·
2016-05-05 14:00
共同学习Java源代码--常用工具类--StringBuffer(三)
publicsynchronizedStringBufferdelete(intstart,intend){ toStringCache=null; super.delete(start,end);
returnthis
ccdust
·
2016-05-04 20:00
js 实现map
map的JS实现 this.map=function(){ varmap={ put:function(key,value){this[key]=value;}, get:function(key){
returnthis
u011659172
·
2016-05-04 11:00
scala中下划线(undercore)
classsheet1{ varc:String=_ 通过jd编译,得到如下publicclasssheet1 { privateStringc; publicStringc() {
returnthis
.c
legotime
·
2016-05-02 08:00
JavaScript函数
//找到所有的header,取得它们id的映射,转换为数组并对它们进行排序 $(":header").map(function(){
returnthis
.id}).get().sort();可选形参functiongetPropertyNames
yuchao1076244056
·
2016-05-01 10:00
JavaScript
共同学习Java源代码--常用工具类--AbstractStringBuilder(八)
publicAbstractStringBuilderinsert(intdstOffset,CharSequences){ if(s==null) s="null"; if(sinstanceofString)
returnthis
.insert
ccdust
·
2016-04-28 18:00
js原型链实例
name;this.age=age;}Person.prototype.marry=true;Person.prototype.showName=function(){alert(this.name);
returnthis
babybk
·
2016-04-27 14:00
JavaScript
prototype
实例
大话设计模式-代理模式
实现publicclassSchoolGirl { publicStringname; publicStringgetName() {
returnthis
.name; } publicvoidsetName
qq_32400847
·
2016-04-25 18:00
關於js繼承實現
functionSuperType(){ this.property=true; } SuperType.prototype.getSuperType=function(){
returnthis
.property
chenpeggy
·
2016-04-25 16:00
JavaScript常用字符串与数组扩展函数小结
String对象的扩展函数:String.prototype.trim=function(){
returnthis
.replace(/^\s+|\s+$/g,"");}String.prototype.ltrim
hudeyong926
·
2016-04-24 17:34
java中this关键字的用法
thisthis主要用法1明确访问一个类的成员变量classperson{intage;publicperson(intage){this.age=age;}publicintgetPerson(){
returnthis
.age
daoren1
·
2016-04-23 20:38
共同学习Java源代码--常用工具类--AbstractStringBuilder(五)
publicAbstractStringBuilderappend(inti){ if(i==Integer.MIN_VALUE){ append("-2147483648");
returnthis
ccdust
·
2016-04-23 18:00
hibernate两个表的联合查询 查询其中一个表
{Stringhql="selectpcfromRevitAddInpc,RevitDownLoadrctwherepc.id=rct.staffIdandrct.staffId=:staffId";
returnthis
.getCurrentSession
AlbertFly
·
2016-04-21 14:00
二叉树
privateBTNoderoot; publicBinTree(){ this.n=0; this.root=null; } /** *判断二叉树是否为空 */ publicbooleanisEmpty(){
returnthis
.n
Veson__
·
2016-04-18 17:00
java
遍历
二叉树
JS标准库的部分内置对象的常用属性和方法
的属性和方法创建空Objectvaro1={};varo2=Object.create(Object.prototype);创建Objectvaro3={str:"string...",fun:function(){
returnthis
.str
JS菌
·
2016-04-17 00:00
javascript
javascript练习题(三)
第4章对象1.请看下列代码:functionF(){ functionC(){
returnthis
; } returnC(); } varo=newF();请问上面的this值指向的是全局对象还是对象
k_shl_2011
·
2016-04-16 23:00
JavaScript
js 闭包以及就是变量作用域
针对下面几个例子说明一下:varname="TheWindow"; varobject={ name:"MyObject", getNameFunc:function(){ returnfunction(){
returnthis
.name
upxiaofeng
·
2016-04-13 14:00
JavaScript
闭包
Java
效果如下:/***序号*/privateintid;/***获取序号*@returnid序号*/publicintgetId(){
returnthis
.id;}/***设置序号*@paramid序号*/
yezi_0016
·
2016-04-12 22:00
MyEclipse
get/set
注释
Java
效果如下: /** *序号 */ privateintid; /** *获取序号 *@returnid序号 */ publicintgetId(){
returnthis
.id;
yezi_0016
·
2016-04-12 22:00
MyEclipse
注释
get/set
Java
效果如下:/***序号*/privateintid;/***获取序号*@returnid序号*/publicintgetId(){
returnthis
.id;}/***设置序号*@paramid序号*/
yezi_0016
·
2016-04-12 22:00
MyEclipse
get/set
注释
C#中的 int?是什么意思
a=null;publicintb(){
returnthis
.a??0;}值类型后面加问号表示可为空null(Nullable结构)Nullable是.NE
suixiangzhe
·
2016-04-12 17:00
c
C#
JavaScript语言精粹之继承篇
1.伪类构造器继承varPerson=function(name){ this.name=name; } Person.prototype.getName=function(){
returnthis
.name
super_yang_android
·
2016-04-10 23:00
伪类
原型
部件
函数化
对象说明符
javascript原型
使用构造函数获取原型属性//构造函数 functionBox(name,age){ this.name=name;//实例属性 this.age=age; this.run=function(){//实例方法
returnthis
.name
u011526599
·
2016-04-09 19:00
JavaScript
prototype
原型
${}没有数据
{}没有数据我是这样写的privatedoublem_dA=0; privatedoublem_dB=0; privatedoublem_dResult=0; publicdoublegetA(){
returnthis
.m_dA
qq_32768743
·
2016-04-09 16:00
bug
javascript面向对象
1个对象,然后给这个对象新建属性和方法varbox=newObject();//创建对象 box.name='Lee';//添加属性 box.age=100; box.run=function(){
returnthis
.name
u011526599
·
2016-04-09 11:00
JavaScript
对象
《JavaScript高级程序设计》——对象与继承
name:"Steve",toString:function(){
returnthis
.name;}}console.log(person);//SteveObject.defineProperty(person
dumzp13
·
2016-04-07 22:39
笔记
javascript
使用validate验证表单
jQuery.validator.addMethod("chcharacter",function(value,element){ varlength=value.length; varregName=/[^\u4e00-\u9fa5]/g;
returnthis
.optional
kakaxiD
·
2016-04-07 17:00
表单
js类式继承与原型式继承详解
先声明一个超类functionPerson(name){this.name=name;}//给这个超类的原型对象上添加方法getNamePerson.prototype.getName=function(){
returnthis
.name
mguo
·
2016-04-07 15:27
获取系统日期和时间
privateSimpleDateFormatsdf=null;publicStringgetDate(){this.sdf=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss.SSS");
returnthis
.sdf.format
wangyanming123
·
2016-04-04 19:00
系统时间
系统日期
上一页
54
55
56
57
58
59
60
61
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他