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
常用正则表达式(通用字符过滤)
u9fa5]匹配双字节字符(包括汉字在内):[^/x00-/xff]应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)String.prototype.len=function(){
returnthis
.replace
CodingSir
·
2020-08-16 06:13
js逗号运算符
表达式1,表达式2,表达式3……表达式n依次执行表达式1,2,3,最终返回执行n之后的结果2、再看一例varage=10;varobj={age:20,get:function(){varage=30;
returnthis
多点世界
·
2020-08-16 04:35
js
JS经典面试题记录
题目代码:functionFoo(){getName=function(){console.log(1)}
returnthis
}Foo.getName=function(){console.log(2)
君莫jw
·
2020-08-16 03:00
JS
+
ES6
记录一道经典的面试题(js)
一、题目描述functionFoo(){getName=function(){alert(1);}
returnthis
}Foo.getName=function(){alert(2);}Foo.prototype.getName
洳娅
·
2020-08-16 00:42
面试
前端
JavaScript版的hashtable
functionHashTable(){this.Items=[];this.Count=function(){
returnthis
.Items.length;};//长度this.DictionaryEntry
aocha4074
·
2020-08-15 22:49
vue(Vue-Router3.1.0+)中,连续多次单击同一个路由标签(单击该标签会发生路由跳转)跳转路由时,出现Uncaught (in promise)错误。
如:上代码以及图如下首页搜索订单个人中心exportdefault{methods:{isPath:function(path){
returnthis
.
bailizx
·
2020-08-15 22:57
#
vue项目
js开发过程中遇到的问题
Vue 分辨率 自适应
方法一documentClientHeight放在VueX中管理computed:{documentClientHeight:{get(){
returnthis
.
weixin_43805387
·
2020-08-15 20:04
vue 计算属性
varvm=newVue({el:'#example',data:{msg:'Hello'},computed:{//计算属性的gettermyMsg:function(){//`this`指向vm实例
returnthis
.m
G-shitou
·
2020-08-15 20:18
vue
vue
javascript
前端
正则匹配:去除字符串中的空格,获取select下拉选项中的option的文本内容
//去除空格String.prototype.Trim=function(){
returnthis
.replace(/\s+/g,"");}//去除换行functionClearBr(key){key=
咚浸暖的过去
·
2020-08-15 19:50
js
js-原型和原型链
构造函数functionFoo(name,age){//构造函数命名:大写字母开头this.name=namethis.age=agethis.class='class-1'//
returnthis
//
光就一个字
·
2020-08-15 19:26
JavaScript
js的trim()
1.通过原型创建字符串的trim()//去除字符串两边的空白String.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,""
风火一回
·
2020-08-15 18:30
JavaScript
uni-app基础语法
中写上计算属性exportdefault{data(){return{message:'uniapp'}},computed:{//计算属性的getterreversedMessage:function(){
returnthis
.me
li_yan_
·
2020-08-15 18:01
js、javascript去掉前后空格
functionString.prototype.Trim(){
returnthis
.replace(/(^/s*)|(/s*$)/g,"");}//去掉左右空格functionString.prototype.Ltrim
rin9958
·
2020-08-15 18:25
js 去掉空格
写成类的方法格式如下:(str.trim();)String.prototype.trim=function(){
returnthis
.replace(/(^\s*)|(\s*$)/g,"");}String.prototype.ltrim
weixin_30776273
·
2020-08-15 17:07
js去除空格12种方法
JS去除空格的方法目前共有12种:实现1String.prototype.trim=function(){
returnthis
.replace(/^\s\s*/,'').replace(/\s\s*$
三两岁月
·
2020-08-15 17:06
Jquery
Javascript
上传图片尺寸大小限制(iviewUI组件库为例)
组件库为例iview中可以在before-upload中使用newFileReader()读取文件和newImage()建立图像对象来判断控制图片尺寸handleBeforeUpload(file){
returnthis
.checkImageWH
叶落森
·
2020-08-15 17:49
vuejs
javascript
js用sort存在排序不正确漏洞
解决办法:computed:{sortItems:function(){
returnthis
.items.sort(sortNumber)}}functionsortNumber(a,b){returna-b
lucky_girl_girl
·
2020-08-15 14:06
笔记
备忘录实现+具体需求应用备忘录
首先你要了解设计模式,了解备忘录模式,如果不了解那就先去了解吧.classCache{//中间对象constructor(json){this.json=json}getJson(){
returnthis
.json
anlin9217
·
2020-08-15 13:49
javascript interface 调用
varPerson=newInterface('Person',['getName']);varmap=function(){this.name="张三";this.getName=function(){
returnthis
.name
iteye_11316
·
2020-08-15 10:58
javascript
js简单封装:简单把数据直接输出到表格之中
这个函数,如下:1//格式化字符串,这个方法网上有很多例子不懂自行百度吧2String.prototype.format=function(param){3varreg=/{([^{}]+)}/gm;4
returnthis
.replace
a1354161120
·
2020-08-15 10:18
用java写一个复数类Complex
publicdoublegetReal(){
returnthis
.real;}//得到实部publicdoublegetImage(){
returnthis
.img;}//得到虚部publicdoublegetReal
yang_dk
·
2020-08-15 09:35
Linux/Unix
JAVA
返回头部滑动动画
{vartargetOffset=$(this).offset().top;$('html,body').stop().animate({scrollTop:targetOffset},speed);
returnthis
KoalaShane
·
2020-08-15 05:12
Javascript
html
动画
函数
java用递归和非递归实现链表逆序
publicclassNode{privateintdata;privateNodenext;publicNode(intdata){this.data=data;next=null;}publicintgetData(){
returnthis
.data
哥布林飞桶
·
2020-08-15 04:27
算法
String.substring 和String.subSequence
subsequece的实现调用了substring*@since1.4*@specJSR-51*/publicCharSequencesubSequence(intbeginIndex,intendIndex){
returnthis
.substring
WanghuiRs
·
2020-08-15 03:08
java杂记
java中subSequence方法和subString方法的区别
看看源码,实际上也是这样的:JDK1.6.0_05写道Java代码publicCharSequencesubSequence(intbeginIndex,intendIndex){
returnthis
.substring
o_Apple_o
·
2020-08-15 02:07
java
java
substring
subSequence
浅析Java的up casting和down casting
publicPerson(Stringname){this.name=name;}publicabstractStringgetDescription();publicStringgetName(){
returnthis
.name
lishichengyan
·
2020-08-15 02:42
Java
作业2
packagecdtu.ll.job4;publicclassSuansu{privateinta;privateintb;publicSuansu(){this.a=10;this.b=5;}publicintaddAb(){
returnthis
.a
£⊙潺…梦⊙&
·
2020-08-15 01:52
java复习
javascript内部类和单例的实现
如果使用ES6class方式实现,可以这样单例的实现可以大胆的跟java一样了,比如,classA{constructor(){}...staticgetInstance(){
returnthis
.
JeffTech
·
2020-08-15 01:20
web开发
原型链继承跟构造函数继承的区别
借用构造函数3*/45//Article6functionArticle(){7this.tags=["js","css"];8}9Article.prototype.getTags=function(){10
returnthis
.tags
weixin_30700099
·
2020-08-15 00:24
js 继承 三种常用方法 原型链-借用构造函数-组合式继承
1、经典原型链方法functionSuperType(){this.property=true;}SuperType.prototype.getSuperValue=function(){
returnthis
.property
jiaweimin123
·
2020-08-14 23:01
javascript
日常开发1_项目中的单例与import类文件的导入
this.instance){this.instance=newsceneManager();}
returnthis
.instance;}p
chongfu8221
·
2020-08-14 23:01
简单理解javascript中的原型对象,实现对之间共享属性和行为
典型的构造函数如下:functionPerson(name,age){this.name=name;this.age=age;this.say=function(){
returnthis
.name+',
aitangyong
·
2020-08-14 23:06
HTML/CSS/JS
java基础知识归纳
This关键字this关键字只能在方法内部使用,表示对调的方法的那个对象的引用publicclassTest{inti=0;Testincrement(){i++;
returnthis
;//返回对当前对象的引用
yc青青河边草
·
2020-08-14 22:40
基础知识
通过jquery-validate校验身份证号有效性
页面载入时,加入拓展$(function(){jQuery.validator.addMethod("isIdCardNo",function(value,element){
returnthis
.optional
文瑞涛
·
2020-08-14 21:43
JavaScript
layui获取弹出层内容
一、弹出层:varcallbackdata=function(){
returnthis
.document.getElementById("msgTxt").value;}主页面:varindex=layui.layer.open
weixin_30412013
·
2020-08-14 20:15
list集合转化为map
user.javapublicclassUserimplementsjava.io.Serializable{privateLongid;privateStringName;publicUserSource(Longid){this.id=id;}publicLonggetId(){
returnthis
.id
纵横江湖二十年
·
2020-08-14 18:37
java
map
$.when配合带有ajax的函数
letdtd=$.Deferred();$.ajax({...,success:function(){dtd.resolve();}});returndtd;},loadYYY(){letdate="";
returnthis
.loadYYYHelper
Hubz131
·
2020-08-14 16:45
JS
JavaScript 中实现私有变量
functionRectangular(width,height){this.width=width;this.height=height;}Rectangular.prototype.getArea=function(){
returnthis
.width
gfnbijsda
·
2020-08-14 14:17
结合源码,谈谈v-for和v-if谁的优先级高?应该如何正确使用避免性能问题?
constapp=newVue({el:'#demo',data(){return{children:[{title:'foo'},{title:'bar'}]}},computed:{isFolder(){
returnthis
.child
林不羁
·
2020-08-14 14:01
vue
源码分析--xutil3 网络源码分析
异步请求的方法也类似,最终同步异步都是会调用到同一块代码),流程如下publicTpostSync(RequestParamsentity,ClassresultType)throwsThrowable{
returnthis
.requestSync
刘楼主
·
2020-08-14 13:06
Android
Android
源码解析
js的函数声明
varF=function(){getN=function(){console.log("1")}
returnthis
;}F.getN=function(){console.log("2");}F.prototype.getN
节艹鸣泣之时
·
2020-08-14 11:09
JS
学习笔记
javascript 实现trim的方法
returnthis
.replace(/(^/s*)|(/s*$)/g,"");}程序
Wanghaishanren
·
2020-08-14 09:47
jQuery添加删除属性,添加删除css样式
src:"test.jpg",alt:"TestImage"}eg:$("img").attr("src","test.jpg");eg:$("img").attr("title",function(){
returnthis
.src
J博尔特
·
2020-08-14 08:51
jQuery
MybatisPlus中的save方法什么时候执行insert,什么时候执行update
this.insert(entity);}else{this.update(entity);}
returnthis
.selectByPr
Manu Lab
·
2020-08-14 06:36
Java学习
MybatisPlus
JS 对象
只需要一个对象时使用)varobj={id:123,name:'小米',//属性walk:function(){}//方法}//getset创建对象属性varobj={_age:0,getage(){
returnthis
104828720
·
2020-08-14 00:29
javascript
oop
子类的对象调用父类的方法
classFruit{Stringcolor="未确定颜色";//定义一个方法,该方法返回调用该方法的实例publicFruitgetThis(){
returnthis
;}publicvoidinfo(
赵明雨IT
·
2020-08-13 23:40
Java
数据结构 - 二叉树(前序中序后序查找)
;//编写前序查找方法publicHeroNodepreOrderSearch(intno){System.out.println("前序遍历"+(i++)+"次");if(this.no==no){
returnthis
春_
·
2020-08-13 22:45
数据结构与算法
关于this的理解
浏览器)可以看做是window,console.log(this===window)//true二,一般函数的this也是window(node.js是globalobject)functionf1(){
returnthis
weixin_41854000
·
2020-08-13 22:03
前端
如何更好的理解js中的this
functiona(xx){this.x=xx;
returnthis
};varx=a(5);vary=a(6);console.log(x.x)//undefinedconsole.log(y.x)//
weixin_34326429
·
2020-08-13 21:25
2019.10.19
Object.defineProperties(book,{_year:{writable:true,value:2004},edition:{writable:true,value:1},year:{get:function(){
returnthis
swy_swy_swy
·
2020-08-13 19:56
琉璃神社
上一页
21
22
23
24
25
26
27
28
下一页
按字母分类:
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
其他