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插件制作 -- 1.我们的第一个插件:txtHover
定义插件的结构骨架:书中最开始使用的结构骨架如下:jQuery.fn.fluginmane=function(){
returnthis
.each(function(){ //code... })
·
2012-08-14 16:00
jquery插件
{{JS}}关于this一个不解的地方
请见如下代码:vara=1;varobj={a:2,add:function(){
returnthis
.a+1;}};console.log(obj.add());console.log((obj.add
iwebcode
·
2012-08-11 14:00
this
{{JS}}关于this一个不解的地方
请见如下代码:vara=1;varobj={a:2,add:function(){
returnthis
.a+1;}};console.log(obj.add());console.log((obj.add
txf2004
·
2012-08-11 14:00
this
JS获取中文字符的字节数
阅读更多String.prototype.getBytes=function(){varcArr=this.match(/[^\x00-\xff]/ig);
returnthis
.length+(cArr
slikel
·
2012-08-10 13:00
String trim和动态拼接json的key和value
阅读更多1string中trimString.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,"");};2动态拼接json中的
username2
·
2012-08-10 10:00
js
prototype
String trim和动态拼接json的key和value
阅读更多1string中trimString.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,"");};2动态拼接json中的
username2
·
2012-08-10 10:00
js
prototype
自定义JS 字符串操作函数
String.prototype.LTrim=function() {
returnthis
.replace(/(^\s*)/g,""); } String.prototype.Rtrim=function
zsf8701
·
2012-08-09 14:00
Date
function
null
用JQuery在网页中实现分隔条功能的代码
复制代码代码如下:jQuery.noConflict();jQuery.fn.extend({jsplit:function(j){
returnthis
.each(function(){j=j||{};
·
2012-08-09 00:08
javascript 栈 Stack
下面将演示用数组实现的栈栈初始化:创建一个空栈Init:function(){ this.STACKMAX=100; this.stack=newArray(this.STACKMACK); this.top=-1;
returnthis
.stack
·
2012-08-08 01:00
JavaScript
javascript 解惑
varjson={ "func":function(){
returnthis
; } }; varvalue=json["func"](); alert(value);//[objectObject]
SeanCai
·
2012-08-07 17:00
几个简单的JS函数
1:自定义tirm()函数:String.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,"");}调用如下:document.getElementById
yjpfj1203
·
2012-08-07 12:00
正则
trim
表单控制
DWZ (JUI) 教程 layoutH
有些刚刚入门的朋友对layoutH不是很理解,我简单画个图,稍微解释一下layoutH:function($refBox){
returnthis
.each(function(){ var$this=$
jiweigang1
·
2012-08-06 23:00
c
Ajax
function
table
div
jquery 插件学习(六)
function($){$.extend($.fn,{color:function(options){varoptions=$.extend({},$.fn.color.defaults,options);
returnthis
.each
·
2012-08-06 22:15
jquery 插件学习(四)
具体代码如下》复制代码代码如下:jQuery.fn.extend({test:function(){
returnthis
.each(function(){alert(this.nodeName);})}
·
2012-08-06 22:51
jQuery常用方法一览
testImage”});给某个元素添加属性/值,参数是map$(”img”).attr(”src”,”test.jpg”);给某个元素添加属性/值$(”img”).attr(”title”,function(){
returnthis
yanggenxiang
·
2012-08-06 08:00
jquery
Ajax
function
input
callback
div
javascript基于原型的继承
functionPerson(name,age){ this.name=name; this.age=age; this.getName=function(){
returnthis
.name; }
dannywj1371
·
2012-08-04 17:00
指针与const之间的组合,写了个例子温习一下
#include classA { public: A() { this->i=1; } intget()const {
returnthis
->i; }; voidset(inti) { this-
huang_xw
·
2012-08-04 13:00
include
Web : 使用RGraph(HTML5)绘制折线图(四)
先说说上文遗留问题,时间处理Common.jsString.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,""); }
星爷的齐天大圣
·
2012-07-30 10:00
JS去掉中间左右空格Javascript
JS去掉中间左右空格Javascript 1、js实现TRIM功能//Trim(),Ltrim(),RTrim()String.prototype.Trim=function(){
returnthis
.replace
mgf614
·
2012-07-30 09:00
一个简单的注册页面
\d{7,9}$/;//电话号码格式010-12345678
returnthis
.opt
zuowensheng
·
2012-07-29 23:00
function
Class
input
XMLhttpREquest
email
电话
一道有趣的JS面试题
当你搞定上面这道之后,请再看下面这道题:varfoo={ bar:function(){
returnthis
.baz; }, baz:1 }; (function(){ returntypeofarguments
iwebcode
·
2012-07-26 15:00
面试题
为什么可以用while(cin)?
." */ operatorvoid*()const {
returnthis
->fail()?0:const_cast(this);}如果你把一
propheteia
·
2012-07-24 20:00
为什么可以用while(cin)?
." */ operatorvoid*()const {
returnthis
->fail()?0:const_cast(this);}如果你把一
propheteia
·
2012-07-24 20:00
JS trim
String.prototype.trim=function(){
returnthis
.replace(/(^[\s/n]*)|([\s/n]*$)/g,"");}String.prototype.ltrim
Jinuxwu
·
2012-07-22 09:00
function
js继承
方式 varBaseClass=function() { this.name="3zfp"; this.age =100; this.ToString=function(){
returnthis
.name
sprita1
·
2012-07-19 00:00
修改js Date对象添加年月日
我们只需要对现有的时间进行叠加他就能自动完成日期的转换,修改代码如下://重写toString方法,将时间转换为Y-m-dH:i:s格式Date.prototype.toString=function(){
returnthis
.getFullYear
o_owangdong
·
2012-07-18 14:19
javascript
Android中的自定义数据适配器
//应用程序id privateStringappName;//应用程序名称 privateStringappIcon; //应用程序图标 publicintgetAppId(){
returnthis
.appId
lihengfang
·
2012-07-14 00:00
android
list
ListView
layout
null
button
函数对象
includeusingnamespacestd;classGTF{public: GTF(intsize){ this->size=size; } booloperator()(constintaa){
returnthis
zh634455283
·
2012-07-10 15:00
c
String
iterator
javascript中的类
shizhan"; stu.age=22; stu.setName=function(name) { this.name=name; } stu.getName=function() {
returnthis
shizhan1881
·
2012-07-06 19:00
JavaScript
html
object
function
测试
扩展
disabled设置字体颜色
readOnlySelect(document.getElementById("readOnlyResType"));}functionreadOnlySelect(obj){obj.onfocus=function(){
returnthis
.blur
xqg-88
·
2012-06-27 16:00
html
input
disabled
disabled设置字体颜色
readOnlySelect(document.getElementById("readOnlyResType"));}functionreadOnlySelect(obj){obj.onfocus=function(){
returnthis
.blur
xqg-88
·
2012-06-27 16:00
html
input
disabled
postgreSQL 操作符不存在: character = bytea
;
returnthis
.getHibernateTemplate().find(hsql,entryId);最后发现是我传进去的参数:entryId不小心变成null,一直没留意到
linshutao
·
2012-06-26 09:00
Hibernate
String
null
PostgreSQL
character
javascript学习笔记(十) js对象 继承
getSuperValuefunctionSuperClass(){this.property=true;}SuperClass.prototype.getSuperValue=function(){
returnthis
.property
·
2012-06-19 23:12
字符串函数扩充
******************************************//去除左边的空格 String.prototype.LTrim=function(){
returnthis
.replace
cdlgliulin
·
2012-06-14 11:59
JavaScript
java
asp.net+cookie+javascrip制作的购物车基础知识
首先,介绍一下javascript操作cookie的基础 //去除空格,回车 String.prototype.Trim=function() {
returnthis
.replace
yzuisoz
·
2012-06-13 09:06
JavaScript
return
function
cookie
的
asp.net+cookie+javascrip制作的购物车基础知识
首先,介绍一下javascript操作cookie的基础//去除空格,回车String.prototype.Trim=function(){
returnthis
.replace(/(^\s*)|(\s*
yzuisoz
·
2012-06-13 09:06
的
javascript
cookie
jquery 文本框提示[如:请输入关键字] 点击后消失
;(function($){ $.fn.keytip=function(str){
returnthis
.each(function(){ varobj=$(this); obj.click(function
sfilyh
·
2012-06-11 18:00
容易忘记的,jq选择器各种
testImage”});给某个元素添加属性/值,参数是map$(“img”).attr(“src”,”test.jpg”);给某个元素添加属性/值$(“img”).attr(“title”,function(){
returnthis
.src
·
2012-06-02 11:00
选择器
hibernate 分页
publicListfindProjItemSumHeadPage(finalintfirstResult,finalintmaxResults){
returnthis
.hibernateTemplate.executeF
shutingwang
·
2012-05-31 10:00
Hibernate
session
JavaScript trim函数大赏
实现1String.prototype.trim=function(){
returnthis
.replace(/^\s\s*/,
爱国者
·
2012-05-30 17:00
JavaScript
trim
JS的一道题
varx=100;varc={x:30,getValue:function(){varx=40;
returnthis
.x;}}alert(c.getValue());//30c.getValue=c.getValue
zsw2zkl
·
2012-05-29 09:00
js中prototype的一个小例子
functionSUOLONG(title,content){ this.title=title||"tt"; this.content=content||"cc";
returnthis
.title
lushuaiyin
·
2012-05-28 14:00
c
function
prototype
給js的String添加trim方法
這是lgzx公司的一道面試題,要求給js的String添加一個方法,去除字符串兩邊的空白字符(包括空格、製錶符、換頁符等) String.prototype.trim=function(){ //
returnthis
.replace
叶孤魂
·
2012-05-24 01:00
jquery - 菜单插件(右键菜单,左键菜单)
removemodels:[],//点击哪些document对象菜单不消失offset:{top:0,left:0},//偏移$menu:$("")//jquery对象菜单};$.extend(def,o);
returnthis
.each
tbse07022
·
2012-05-23 00:10
javascript
《Groovy入门经典》读书笔记
阅读更多如果我们把规矩和对称作为一种美,那么Java语言很符合这种标准,你看:publicclassCar{privateintwindowCount;publicCar(){}publicintgetWindowCount(){
returnthis
.windowCount
stevezheng
·
2012-05-22 14:00
java
groovy
读书笔记
c#中字段(field)和属性(property)的区别
classmyclass{ privateint _age;//私有的字段 publicintage//属性 { get {
returnthis
.
susan19890313
·
2012-05-17 10:00
C#
Class
扩展
项目中的js
height){ this.width=width*1.0||0.0; this.height=height*1.0||0.0;};Size.prototype={ toString:function(){
returnthis
.width
爱coding
·
2012-05-02 14:00
知识点整理之Java获取MD5或者SHA
/***MD5*/publicStringgetMd5(Stringmsg)throwsNoSuchAlgorithmException{
returnthis
.digest(msg,"MD5");}/*
redstarofsleep
·
2012-05-02 11:00
java例程练习(this关键字的使用)
publicclassTest{ inti=0; Test(inti){ this.i=i; } Testincreament(){ i++;
returnthis
; } voidprint()
haifengzhilian
·
2012-04-21 12:00
java
String
Class
j2se之泛型接口
publicabstract. } publicclassPet{ privatestaticlongcount=0; privatefinallongid=++count; publicStringtoString(){
returnthis
.getClass
Liu_Sheng_No_One
·
2012-04-19 17:00
上一页
67
68
69
70
71
72
73
74
下一页
按字母分类:
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
其他