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 插件开发笔记整理
height:function(options){//默认参数vardefaults={color:'红色'};//覆盖默认参数varopts=$.extend(defaults,options);//主函数
returnthis
.each
·
2011-01-17 17:59
编写jquery扩展插件
第一步:创建一个js文件第二步:编写有关代码jQuery.fn.extend({ ///这个函数是全部选择所有的元素 check:function(){
returnthis
.each
teresa502
·
2011-01-17 09:00
JavaScript
jquery
function
object
测试
input
javascript的一些常用例子
toLocaleTimeString());//创建对象的函数functionPerson(name,age){this.Name=name;this.Age=age;this.SayHello=function(){
returnthis
.Name
pvfhv
·
2011-01-14 10:00
JavaScript
Date
function
object
JavaScript中两种链式调用实现代码
this.prop1=null;this.prop2=null;this.prop3=null;}ClassA.prototype={method1:function(p1){this.prop1=p1;
returnthis
·
2011-01-12 18:02
Android下intent的setdata、settype和setdataandtype函数
使用该函数表示要查找文件的mime类型(如*/*),这个和组件在manifest里定义的相对应,但在源代码里:publicIntentsetData(Uridata){mData=data;mType=null;
returnthis
huangyic1986
·
2011-01-10 16:00
android
String
File
null
String trim 删除空格
/***删除左右两端的空格*/String.prototype.trim=function(){
returnthis
.replace(/(^/s*)(/s*$)/g,”);}/***删除左边的空格
lining213
·
2011-01-05 22:00
String
function
javascript 闭包疑问
returnarr2;};})()Array.prototype.f1=function(){return[];}Array.prototype.f2=function(){this.length=0;
returnthis
·
2010-12-30 19:30
Spring对大字段的处理
Spring中整合Hibernate来实现对大数据的处理在hibernate配置文件中如下配置在POJO类中privatebyte[]fileBody;publicbyte[]getFileBody(){
returnthis
.fileBody
cntanghai
·
2010-12-29 18:00
JavaScript去掉空格的方法集合
实现1复制代码代码如下:String.prototype.trim=function(){
returnthis
.replace(/^\s\s*/,'').replace(/\s\s*$/,'');}看起来不怎么样
·
2010-12-28 21:59
js小积累
u9fa5]匹配双字节字符(包括汉字在内):[^\x00-\xff]应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)String.prototype.len=function(){
returnthis
.replace
cqzs19871202
·
2010-12-22 09:00
正则表达式
JavaScript
VBScript
prototype
.net
javaScript 验证表单
String.prototype.Trim=function(){
returnthis
.replace(/(^/s*)|(/s*$)/g,""); } functioncheck(
daijunjieok
·
2010-12-10 21:00
JavaScript
function
input
两个郁闷的异常: java.lang.StackOverflowError和java.net.SocketException: Broken pipe
bug的缘由是因为写代码的时候不小心,将:publicbooleanisEmpty(){
returnthis
.queue.isEmpty();}写成了:publicbooleanisEmpty(){
returnthis
.isEmpty
historyasamirror
·
2010-12-07 16:00
thread
exception
socket
server
session
Mina
js对象的构造和继承实现代码
复制代码代码如下://定义js的user对象functionUser(name,age){this.name=name,this.age=age,this.getName=function(){
returnthis
.name
·
2010-12-05 16:52
本地对象Array的原型扩展实现代码
复制代码代码如下:Array.prototype.del=function(){varb={},c,i=0,l=this.length,j;for(;i0)this.push(+j||j);}
returnthis
·
2010-12-04 22:32
为jQuery增加join方法的实现代码
function(sep,mapvalue){return$.map(this,mapvalue).join(sep);};jQuery.fn.joinattr=function(sep,attr){
returnthis
.join
·
2010-11-28 17:07
jqQuery常用方法
testImage”});给某个元素添加属性/值,参数是map$(”img”).attr(”src”,”test.jpg”);给某个元素添加属性/值$(”img”).attr(”title”,function(){
returnthis
lmzpp
·
2010-11-23 11:00
jquery
Ajax
function
input
callback
div
Java开源分词系统IKAnalyzer学习(八) 基于词库分词
System.out.println(l);} 相关流程 词典匹配的关键代码:/***匹配词段*@paramcharArray*@returnHit*/publicHitmatch(char[]charArray){
returnthis
.match
lengyuhong
·
2010-11-16 15:00
常用js校验
\d{3}$/ 第1位是1到9间的数字,后面三位取0到9间的数字,共四位 returnreg.test(value); } String.prototype.trim=function() {
returnthis
.replace
真善美
·
2010-11-05 15:00
关于javascript中this关键字(翻译+自我理解)
首先,先看一个很典型的关于this关键字题目:复制代码代码如下:varname='hong'varobj={name:'ru',getName:function(){returnfunction(){
returnthis
.nam
·
2010-10-20 12:32
转-jquery扩展
第一步:创建一个js文件第二步:编写有关代码jQuery.fn.extend({ ///这个函数是全部选择所有的元素 check:function(){
returnthis
.each
guoyz_1
·
2010-10-18 14:00
JavaScript
jquery
function
object
测试
input
Jquery $.extend()用法
:prop(Object):要合并到jQuery对象中的对象1,添加方法,如同$("button").click()方法一样使用:jQuery.fn.extend({check:function(){
returnthis
.each
movedo
·
2010-10-17 22:09
职场
用法
extend
Jquery
javascript insert text on cursor postion
jquery-insert-text-at-the-current-cursor-position-in-textbox $.fn.insertAtCaret=function(myValue){
returnthis
.each
·
2010-10-12 20:00
JavaScript
Collections.sort(List list) list排序学习笔记
classListSortExample{privateStringflag;publicListSortExample(Stringflag){this.flag=flag;}publicStringgetFlag(){
returnthis
.flag
morethinkmoretry
·
2010-09-25 17:00
list
String
object
Collections
Arrays
optimization
关于struts2的action标签
/通过标签不能给type赋值privateStringtype;publicvoidsetType(Stringtype){this.type=type;}publicStringgetType(){
returnthis
.type
ds5059
·
2010-09-24 13:10
两端读写Cookies(服务器端C#、客户端Javascript)
C#读写CookiespublicstringCookieValue{get{
returnthis
.txtCookies.text;}set{this.txtCookies.text=value.ToString
逍遥散人
·
2010-09-20 16:50
JavaScript
Cookies
C#
读取
写入
两端读写Cookies(服务器端C#、客户端Javascript)
C#读写CookiespublicstringCookieValue{get{
returnthis
.txtCookies.text;}set{this.txtCookies.text=value.ToString
逍遥散人
·
2010-09-20 16:50
JavaScript
C#
Cookies
读取
写入
网络之美 JavaScript中Get和Set访问器的实现代码
标准的Get和Set访问器的实现复制代码代码如下:functionField(val){this.value=val;}Field.prototype={getvalue(){
returnthis
.
·
2010-09-19 22:27
js 的Trim、LTrim、RTrim函数
String.prototype.Trim=function(){
returnthis
.replace(/(^/s*)|(/s*$)/g,"");} String.prototype.LTrim=function
lingxyd_0
·
2010-09-17 17:00
正则表达式
String
function
jquery 扩展
function(what){alert(what+" hello");}})(jQuery);*******************************$.fn.makeItBlue=function(){
returnthis
.css
lining213
·
2010-09-07 14:00
js javaScript 操作cookie
String.prototype.Trim=function(){
returnthis
.replace(/^/s+/g,"").replace(//s+$/g,"");}functionJSCookie
IBM_hoojo
·
2010-08-31 09:00
JavaScript
Date
function
null
domain
Path
[构建自己的持久层]三、反射机制
假设有一个类classA{ privateStringname; publicA() { super(); } publicStringgetName() {
returnthis
.name;
hzg801106
·
2010-08-29 12:00
jdk
WPF:从WPF Diagram Designer Part 2学习面板、缩略图、框线选择和工具箱-下
publicclassToolbox:ItemsControl{privateSizedefaultItemSize=newSize(65,65);publicSizeDefaultItemSize{get{
returnthis
.defaultItemSize
jingen_zhou
·
2010-08-17 16:00
职场
休闲
WPF
WPF
Javascript 对象 (三)
return this.name; } } hero.sayName();//Rafaelo varhero={ name:'Rafaelo', sayName:function(){
returnthis
.name
aguang110
·
2010-08-13 15:00
JavaScript
Web
浏览器
求字节长度 验证字符或汉字的说明
求字节长度验证字符或汉字的说明//获取字符长度String.prototype.getBytes=function(){ varcArr=this.match(/[^\x00-\xff]/ig);
returnthis
.length
勤加练习,必能得心应手!不期速成,日拱一卒 !
·
2010-08-12 17:00
JSON与JAVA的数据转换--Bean
BEANJSONObjectjsonObject=JSONObject.fromObject(newJsonBean());System.out.println(jsonObject);//{"func1":function(i){
returnthis
.options
cindysaj
·
2010-08-11 10:46
xml
excel
json
related
JSON与JAVA的数据转换--Map
Boolean.TRUE);map.put("int",newInteger(1));map.put("arr",newString[]{"a","b"});map.put("func","function(i){
returnthis
.arr
cindysaj
·
2010-08-11 10:00
xml
excel
json
related
获得Javascript 对象的属性个数
function(){
returnthis
.
teresa502
·
2010-08-10 07:00
JavaScript
function
扩展
javascript实现java中的map
linkItems===false){ this.disableLinking(); } } /** *获取当前map *@return当前对象 */ Map.noop=function(){
returnthis
sailinglee
·
2010-08-09 08:00
JavaScript
java
浏览器
prototype
firefox
javascript实现java中的map
linkItems===false){ this.disableLinking(); } } /** *获取当前map *@return当前对象 */ Map.noop=function(){
returnthis
sailinglee
·
2010-08-09 08:00
JavaScript
java
浏览器
prototype
firefox
保存Date类型到Oracle10g数据库,时分秒不见了,只有年月日
@Temporal(TemporalType.DATE) @Column(name="STARTDATE",length=7) publicDategetStartdate(){
returnthis
.star
taowei20061122
·
2010-08-07 18:00
Date
数据库
oracle10g
用jquery实现等比例缩放图片效果插件
jQuery.fn.autoZoomLoadImage=function(scaling,width,height,loadPic){if(loadPic==null)loadPic="Loading.gif";
returnthis
.each
·
2010-07-24 00:31
C#中属性和一般字段的区别
而且不能为对读写的值进行操作而属性可以对即将读写的字段进行操作比如Student类中的stuId字段的属性StuId在StuId中的get与set中就可以对读写的值进行操作,例如: publicstringStuId { get{
returnthis
.stuId
caixiexin
·
2010-07-23 17:00
String
C#
java.lang.String中的trim()方法的详细说明
首先我直接反编译String类,找到Trim()方法:publicstringTrim() {
returnthis
.TrimHelper(WhitespaceChars,2); }TrimHelper
muyu114
·
2010-07-14 14:00
String
null
javascript中的replace与replaceAll
replaceAll方法,就是说用replace的话,他自会替换一次.自定义replaceAll方法,String.prototype.replaceAll =function(s1,s2){
returnthis
.replace
wzl002
·
2010-07-07 09:00
jquery.validate使用攻略 第五步 正则验证
mobile",function(value,element){varlength=value.length;varmobile=/^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/
returnthis
.optional
·
2010-07-01 20:19
jquery.validate使用攻略 - 5
function(value,element){ varlength=value.length; varmobile=/^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/
returnthis
.o
·
2010-06-30 15:00
validate
Asp.Net+Javascript+CSS(模仿google的拖拽的个性网页布局) _操作数据库篇
string_SideLeft; string_SideCenter; string_SideRight; publicSide() { } publicintSideID { get{
returnthis
kingboy2008
·
2010-06-26 11:00
JavaScript
数据库
String
css
Google
asp.net
js javaScript中String添加replaceAll 方法
String.prototype.replaceAll=function(s1,s2){
returnthis
.replace(newRegExp(s1,"gm"),s2);//g全局}String.prototype.replaceAll2Excep
IBM_hoojo
·
2010-06-17 11:00
JavaScript
String
function
Infinite Carousel左右滚动代码,手动滚动,可以设置每次滚动个数
InfiniteCarousel$.fn.infiniteCarousel=function(){functionrepeat(str,num){returnnewArray(num+1).join(str);}
returnthis
.each
txf2004
·
2010-06-17 11:00
init
Infinite Carousel左右滚动代码,手动滚动,可以设置每次滚动个数
InfiniteCarousel$.fn.infiniteCarousel=function(){functionrepeat(str,num){returnnewArray(num+1).join(str);}
returnthis
.each
txf2004
·
2010-06-17 11:00
JavaScript
jquery
css
webkit
UP
上一页
71
72
73
74
75
76
77
78
下一页
按字母分类:
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
其他