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
js中格式化时间字符串
0200:00:00”或者将“2010-1-22:13:6"转换为“2010-01-0202:13:06”第一种格式转换1. 2.umber.prototype.pad2=function(){ 3.
returnthis
90后、程序猿
·
2012-04-16 17:00
自己封装一个js的StringBuffer类
functionStringBuffer(str) { vararr=[]; str=str||""; arr.push(str); this.append=function(str1) { arr.push(str1);
returnthis
lixb
·
2012-04-14 19:00
给js原生Array增加each方法
Array.prototype.each=function(fn) {
returnthis
.length?
lixb
·
2012-04-14 19:00
Java中的Enum的使用与分析
Thegivennameofme"), LIU("Thefamilynameofme"); privateStringcontext; privateStringgetContext(){
returnthis
.context
kongls08
·
2012-04-13 14:00
java
String
equals
Class
编译器
colors
原始ajax api 操作
阅读更多String.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,"");};functionajaxObj(){varusername
mojianpo
·
2012-04-12 18:00
java链表学习
(Stringname){ this.name=name; } publicvoidsetNext(Nodenext){ this.next=next; } publicNodegetNext(){
returnthis
.next
chanya
·
2012-04-09 21:00
关于javascript对象的prototype与constructor
始终指向创建当前对象的构造函数事例:functionParenizor(name){ this.name=name} Parenizor.prototype.getName=function(){
returnthis
.name
陈一奇
·
2012-04-09 16:00
经典正则表达式
u9fa5]匹配双字节字符(包括汉字在内):[^/x00-/xff]应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)String.prototype.len=function(){
returnthis
.replace
wx_962464
·
2012-04-09 08:00
prototype的解读之String的capitalize
http://zhangyaochun.iteye.com/blog/1475764 /* 思路还是很简单的,第一个字符大写,其他都小写 */ capitalize:function(){
returnthis
.charAt
zhangyaochun
·
2012-04-05 21:00
String
prototype
capitalize
js实现replaceAll
第一种:String.prototype.replaceAll =function(s1,s2){
returnthis
.replace(newRegExp(s1,"gm"),s2); //这里的gm
uohzoaix
·
2012-03-31 10:00
JS过滤空白字符
functionTrim(str) { returnstr.replace(/^\s+|\s+$/g,"");//去除字符串两边的空白符 //
returnthis
.replace(/^\s+/g,"
斯文剑客
·
2012-03-30 14:00
Java中的Enum的使用与分析
publicenumEnumTest{FRANK("Thegivennameofme"),LIU("Thefamilynameofme");privateStringcontext;privateStringgetContext(){
returnthis
.context
fanjf
·
2012-03-30 11:00
JavaScript中的面向对象【二】
varMyObject={}; MyObject.name='John'; MyObject.say=function(){ //this关键字引用的是包含它的函数作为某个对象的方法被调用的那个对象
returnthis
.name
·
2012-03-28 19:00
JavaScript
PHP一些常用的正则表达式
u9fa5]匹配双字节字符(包括汉字在内):[^\x00-\xff]应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)String.prototype.len=function(){
returnthis
.replace
lampsunny
·
2012-03-20 10:00
自己整理 可用的 表单验证(表单项不能为空)js自定义trim操作
String.prototype.trim=function(){
returnthis
.replace(/(^\s+)|(\s+$)/g,'');}functioncheck(obj){if(obj.value.length
txf2004
·
2012-03-16 17:00
trim
JS Trim() 去空格
-02//Formorevisithttp://www.yaosansi.com//Trim(),Ltrim(),RTrim()String.prototype.Trim=function(){
returnthis
.replace
ranbolwb
·
2012-03-14 15:00
function
18---java中泛型02(通配符)
privateTvar;//定义泛型变量 publicvoidsetVar(Tvar){ this.var=var; } publicTgetVar(Tvar){
returnthis
.var
bzuld
·
2012-03-14 13:00
结构体最后的长度为0或1数组的作用
其实很早在看LINUX下就看到这个东西,后来在MFC内存池里同样也看到了类似的东西,还依照MFC写过一个类似的小内存池,(MFC用的是
returnthis
+1)后来在李先静的《系统程序员成长计划》里看到了类似的定义
j_m
·
2012-03-14 11:00
jquery基础教程:JQuery 常用思路方法基础
testImage"});给某个元素添加属性/值,参数是map$("img").attr("src","test.jpg");给某个元素添加属性/值$("img").attr("title",function(){
returnthis
aspnet2002web
·
2012-03-11 21:43
.NET与JQuery
prototype的api整理分析之字符串的去空白字符
正文: 1、api使用场景:去掉字符串的前后空白字符 2、上代码: strip:function(){
returnthis
.replace(/^\s+/,'').replace(/\s+$/,''
zhangyaochun
·
2012-03-11 16:00
strip
去掉字符串中的