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
d3.js 教程 模仿echarts legend功能
arguments.length)
returnthis
._series;this._series=seri
Vadim
·
2019-09-05 15:00
js原型模式和继承
functionSuperType(){this.property=true;//原型属性}//基类方法SuperType.prototype.getSuperValue=function(){
returnthis
.property
假面佛
·
2019-09-05 10:00
JavaScript 设计模式
AnhighlightedblockfunctioncreatePerson(name,age,job){varobj=newObject();obj.name=name;obj.age=age;obj.job=job;obj.sleep=function(){
returnthis
.name
RONG51920
·
2019-09-04 16:00
前端
JavaScript基础
JS设计模式
JS/CSS实现字符串单词首字母大写功能
css实现:text-transform:capitalize;JS代码一:String.prototype.firstUpperCase=function(){
returnthis
.replace(/
风雨后见彩虹
·
2019-09-03 08:20
小tips:JS/CSS实现字符串单词首字母大写
css实现:text-transform:capitalize;JS代码一:String.prototype.firstUpperCase=function(){
returnthis
.replace(/
风雨后见彩虹
·
2019-09-02 21:00
jquery find 推荐
对象所有匹配元素的标识信息数组//每个元素形如:tagName或tagName#id(如果有id的话)functiongetTagsInfo($doms){return$doms.map(function(){
returnthis
.tagName
dunkbird
·
2019-08-30 10:00
数据结构-栈
1、栈2、栈实现//stack构造函数classStack{items=[];constructor(){}//元素入栈,返回栈的大小push(el){
returnthis
.items.push(el)
ToSmile
·
2019-08-30 00:00
进制转换
栈
数据结构与算法
Android文件上传和下载 iframe
="0";publicvoidsetLocalFilePath(Stringpath){this.localFilePath=path;}publicStringgetLocalFilePath(){
returnthis
.localFileP
helloworlddm
·
2019-08-29 14:20
Android平台
Java
前端不得不说的数据结构
classQueue{constructor(){this.arr=[]}enqueue(element){//入队列this.arr.push(element)}dequeue(){//出队列
returnthis
.items.shift
前端优选
·
2019-08-27 00:00
typescript
node.js
css
html
javascript
一道有趣的面试题
//如何令x==1&&x==2&&x==3解答object方式varx={a:1,valueOf:function(){
returnthis
.a++;}}varx={a:1,toString:function
geeeger
·
2019-08-27 00:00
ecmascript
javascript
在限定并发数下用 Promise 并发完成请求
Promise的题目,给定N个URL,要求使用Promise在限定并发数为M(M{//每当并发池跑完一个任务,就再塞入一个任务leturl=this.urls.shift();this.setTask(url);
returnthis
.run
明酱
·
2019-08-24 00:00
javascript
promise
es6知识点
varfactory=function(a,b){this.a=a;this.b=b;this.c={a:6,b:function(){
returnthis
.a;}}}console.log(newfactory
东风冷雪
·
2019-08-12 00:56
es6知识点
varfactory=function(a,b){this.a=a;this.b=b;this.c={a:6,b:function(){
returnthis
.a;}}}console.log(newfactory
东风冷雪
·
2019-08-12 00:56
js函数this理解?手写apply、call、bind就够了
functiona(){
returnthis
}console.log(a()===window)//true函数的this关键字在JavaScript中的表现略有不同,此外,在严格模式和非严格模式之间也会有一些差别
搁浅
·
2019-08-08 00:00
this
bind
call
函数
javascript
c#和JS字符串format实现(可实现JSON对象,c#实体对象,C#匿名对象,替换)
首先看一下JS实现方法,此方法在网上找的,具体地址忘了,代码如下:String.prototype.format=function(){if(arguments.length==0)
returnthis
温馨梦痕
·
2019-08-06 14:17
C#(Format)
C#
vue的注意规范之v-if 与 v-for 一起使用教程
循环中所以,不推荐v-if和v-for同时使用使用推荐方式:{{user.name}}{{user.name}}或者:放在计算属性遍历computed:{activeUsers:function(){
returnthis
.users.filter
疯三年
·
2019-08-04 08:28
vue校验邮箱,校验手机号
phone','idCard'*@returns{*}false校验失败,true校验成功*/exportfunctioncheck(str,type){lettypes={phone(){//校验手机号
returnthis
.typeCheckFn
学而不化,非学也。
·
2019-07-29 17:18
vue
单例模式实现模态框
functionSingleton(uName){this.userName=uNamethis.ins=null}Singleton.prototype.showUserName=function(){
returnthis
.userName
yang
·
2019-07-28 00:00
javascript
类和静态方法 继承以及ts类的写法(原型链继承、对象冒充继承、原型链+对象冒充组合继承)
console.log(p.name);2.构造函数和原型链里面新增方法functionPerson(){this.name="jake";this.age=20;this.run=function(){
returnthis
.name
johnnie_wang
·
2019-07-26 00:32
vue实现购物车滑动删除
=='cart')
returnthis
.clientX1=e.changedTouch
qq602285510
·
2019-07-25 15:57
vue
从无到有构建vue实战项目(六)
methods:{handleSelect:function(){},//鼠标覆盖显示下拉内容addDropdownContent:function(){this.activeDisplay="block";
returnthis
.activeDisplay
啃土豆的菜鸟
·
2019-07-21 17:00
阿里经典面试题
functionFoo(){getName=function(){console.log(1);};
returnthis
;}Foo.getName=function(){console.log(2);}
小提莫~
·
2019-07-18 15:00
京东--前端实习面试
让我求内容区的宽度和高度实现es6的模板字符串一行代码实现一个简单的模板字符串替换-微醺岁月-SegmentFault思否String.prototype.render=function(context){
returnthis
.rep
任小宪
·
2019-07-18 10:59
VUE
{s}},全名叫{{ys}}exportdefault{name:'HelloWorld',data(){return{y:'杨',m:'少辉',}},computed:{ys:function(){
returnthis
.y
星河入怀fd
·
2019-07-10 17:10
Vue小知识
1、通过函数的方式,动态的设置标签的classmethods:{ImageClassName(){
returnthis
.itemData.imageClass}2、let和const的主要区别let声明的变量可以改变
养个小东西
·
2019-07-09 16:11
vue computed计算属性 watch监听
中不可以重复声明否则报错exportdefault{name:"watch",data(){return{msg:"123"};},methods:{},computed:{comsg:function(){
returnthis
.msg
啾啾啾啾一口
·
2019-07-07 18:00
2019-06-29vue名字
{msg:String},data(){return{msg1:'mz',number:111,xing:'王',ming:'壮语',}},computed:{quanming:function(){
returnthis
嚜羽
·
2019-07-07 12:21
VUE2.6.10——computed计算属性
varvm=newVue({el:'#example',data:{message:'Hello'},computed:{//计算属性的getterreversedMessage:function(){
returnthis
.message.split
xuriliang
·
2019-07-07 00:00
vue.js
源码分析
Vuex 的一般操作
evenOrOdd}}+-incrementifoddincrementifasyncexportdefault{name:'App',data(){return{}},computed:{evenOrOdd(){
returnthis
yang
·
2019-07-07 00:00
vue.js
react动态添加样式:style和className
在react开发过程中,如何动态向元素内添加样式style或classNameclassName动态添加可以实现的语法如下:1、使用逻辑运算符2、使用三元运算符3、使用函数getStyle(){
returnthis
.value.checkedr
milletmi
·
2019-07-03 17:28
js 面试题
1:toStringfunctionA(){this.name="a";this.toString=function(){
returnthis
.name}}functionB(){this.name="
推开世界的门
·
2019-07-02 17:34
JavaScript ——闭包,this
varname="Thewindow";varobject={name:"MyObject",getNameFun:function(){returnfunction(){
returnthis
.name
梦中我有一头迷人长发
·
2019-06-25 18:08
程序猿
其他设计模式
UML类图JS中的应用//`Object.create`用到了原型模式的思想(虽然不是Java中的clone)//基于一个原型创建一个对象varprototype={getName:function(){
returnthis
.first
EmilWong
·
2019-06-21 15:33
class和普通构造函数区别
js构造函数functionMathHandle(x,y){this.x=x;this.y=y;}MathHandle.prototype.add=function(){
returnthis
.x+this.y
zenkle
·
2019-06-21 13:05
ES6
js bable怎么做的继承
先用es6写个简单的继承classA{constructor(){this.name='AA';}getName(){
returnthis
.name;}}classBextendsA{constructor
不得不爱XIN
·
2019-06-19 11:13
常用js/jquery数组对象操作
returnrows[rows.length-1-i];});2,varhashMap={Set:function(key,value){this[key]=value},Get:function(key){
returnthis
兰給
·
2019-06-17 16:04
Web开发
2019前端面试题集锦(一)
classChameleon{ staticcolorChange(newColor){ this.newColor=newColor;
returnthis
.newColor; } constructor
reda-陶
·
2019-06-17 00:00
前端
javascript
js在字符串的指定位置插入新的字符
console.log(str.replace(reg,"_"+insertStr))//aaa_ccc_bbb方法二:String.prototype.splice=function(start,newStr){
returnthis
.slice
easonR
·
2019-06-12 16:37
Symbol
constXX=Symbol("x");constYY=Symbol("y");classclassA{constructor(x,y){this[XX]=x;this.y=y;}getSymbol(){
returnthis
Wrestle_Mania
·
2019-06-10 20:37
Symbol
constXX=Symbol("x");constYY=Symbol("y");classclassA{constructor(x,y){this[XX]=x;this.y=y;}getSymbol(){
returnthis
Wrestle_Mania
·
2019-06-10 20:37
2019-06-10
classPerson{constructor(name,age){this.name=name;this.age=age;}getName(){
returnthis
.name;}statica=20;
Wrestle_Mania
·
2019-06-10 15:11
2019-06-10
classPerson{constructor(name,age){this.name=name;this.age=age;}getName(){
returnthis
.name;}statica=20;
Wrestle_Mania
·
2019-06-10 15:11
JS object创建方式
//原型链new方式对象创建letObj=function(){this.color='red'}Obj.prototype={getColor:function(){
returnthis
.color}
smile丶ywx
·
2019-06-08 17:34
vue2.x 监听数据变化 ---- watch
computed:{//需要监听的数据loginToken(){
returnthis
.
一城柳絮吹成雪
·
2019-06-04 20:00
求数组中的最大值的六种方法
1,231,33,33,9999,9999,9339,1011];求数组中的最大值总结总结了6个方法,排序的就选了个冒泡排序为代表1Array.prototype.getMax1=function(){2
returnthis
.sort
永远的新手
·
2019-06-03 19:35
JavaScript
泛型学习(一)
classAutomobile{}publicclassHolder1{privateAutomobilea;publicHolder1(Automobilea){this.a=a;}publicAutomobileget(){
returnthis
.a
evefang
·
2019-06-03 09:46
Spring Cloud Bus与RabbitMq实现config-server自动刷新配置及注意问题
//必须用brootstrap命名,否则报错@Value("${from}")privateStringfrom;@RequestMapping("/from")publicStringfrom(){
returnthis
.from
崛起的小码农
·
2019-05-31 13:50
springcloud
全面分析JavaScript 继承
声明父类functionFather(){this.fatherVal='father';}//为父类添加共有方法Father.prototype.getFatherValue=function(){
returnthis
.fatherVal
文叔叔
·
2019-05-30 09:12
String.Prototype.trim()
String.prototype.trim){String.prototype.trim=function(){
returnthis
.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF
和弦之乐
·
2019-05-28 16:16
01-基础-实例选项-计算属性-基本使用.
Document{{b}}varvm=newVue({el:'#app',data:{a:10},computed:{//计算属性的名字b:值(带return的函数)//b:function(){//
returnthis
.a
这是这时
·
2019-05-28 01:49
上一页
44
45
46
47
48
49
50
51
下一页
按字母分类:
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
其他