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函数调用的方式
作为一个函数调用functionfun(a,b){returna+b;}console.log(fun(1,2));//3二、作为方法调用varobj={num1:3,num2:2,sum:function(){
returnthis
.num1
李丹linda
·
2020-04-12 05:41
动脑学院Rxjava预习资料 RxJava泛型
;//表示Y坐标5.publicvoidsetX(Tx){6.this.x=x;7.}9.publicvoidsetY(Ty){10.this.y=y;11.}13.publicTgetX(){14.
returnthis
.x
十年开发程序员
·
2020-04-11 22:54
JavaScript进阶
对象声明对象varcoco={name:'COCO',describe:function(){
returnthis
.name+'startlearningjavascript!';}};对象的'.'
程序媛coco
·
2020-04-11 19:36
vue使用注意事项:v-for和v-if不要一起使用
{{user.name}}如上情况,可以采用Computed计算属性computed:{activeUsers:function(){
returnthis
.users.filter(function(user
阿狸小小云的快乐时光
·
2020-04-10 21:00
前端设计模式
进行接口的暴露构造函数模式varPerson=function(name,sex){this.name=name;this.sex=sex;}Person.prototype.addEvent=function(){
returnthis
.name
Komolei
·
2020-04-10 20:45
ECMAScript6 class
age){//类似java的构造方法,不过只能有一个this.name=namethis.age=age}getheight1(){//类似java的属性的get方法console.log("get")
returnthis
.height
离子来了
·
2020-04-10 12:26
TypeScript 封装的实现
源码ts////先创建一个类//classHello{//privatename:string;//tell(){//
returnthis
.name;//}//}//leth=newHello();//
sunxiaochuan
·
2020-04-09 21:07
typeScript中 类的定义
classPerson{publicname:string;constructor(name:string){//构造函数实例化类的时候触发的方法this.name=name;}getName():string{
returnthis
.name
砂糖一椰子
·
2020-04-09 17:00
JQuery写拓展
{console.log("MynameisJQuery");}});$.sayName();//"MynameisJQuery"实例方法:$.fn.extend({check:function(){
returnthis
.each
yaya_pangdun
·
2020-04-09 07:57
27、扩展方法
2.定于扩展方法Personl类的定义publicclassPerson{publicstringname;publicoverridestringToString(){
returnthis
.name;
silence_k
·
2020-04-08 23:42
[C#] foreach
publicobjectCurrent{get{return...}}publicboolMoveNext(){...}publicvoidReset(){...}publicIEnumeratorGetEnumerator(){
returnthis
何幻
·
2020-04-08 12:27
详解element上传组件before-remove钩子问题解决
应公司业务要求已上传文件删除前提醒确认代码如下if(file&&file.status==="success"){
returnthis
.$confirm('此操作将永久删除该文件,是否继续?'
pledge_言
·
2020-04-08 11:02
类中的 set get
this.data;}cook(){console.log('我在做饭'+this.food);}setmenu(data){//set方法this.data=data;}getmenu(){//get方法
returnthis
.data
基本密码宋
·
2020-04-08 05:11
我理解的this
简单说,关键字“this”指向当前代码运行时的对象(当前运行时调用该属性或方法的对象)this是在函数调用过程中设置的例子:functionfn(){
returnthis
.name;}leta={name
ziclee
·
2020-04-07 15:10
数据结构 - 栈
varStack=function(){this.data=[];};Stack.prototype.print=function(){
returnthis
.data.join(',');};Stack.prototype.push
Top_Chenxi
·
2020-04-06 22:29
计算属性
使用计算属性可是模板内容更加简洁1、计算属性的用法{{reversed}}varvm=newVue({el:'#app',data:{msg:'你好啊'},computed:{reversed:function(){
returnthis
.msg.split
Alisa-k
·
2020-04-05 17:00
ref属性不只是string
render(){
returnthis
._input=c}/>;},componentDidMount(){this._input.f
冷洪林
·
2020-04-05 06:34
99%的人都会答错的js面试题(你会吗?)(转)
functionFoo(){getName=function(){alert(1);};
returnthis
;}Foo.getName=function(){alert(2);};Foo.prototype.getName
darr250
·
2020-04-05 05:50
ES6之Class跟普通构造函数
构造函数functionM(x,y){this.x=xthis.y=y}M.prototype.add=function(){
returnthis
.x+this.y}letm=newM(5,6)console.log
翔阿翔阿翔
·
2020-04-05 00:50
JS数据属性与存取器属性
1.常见形式varobj={a:5,//数据属性getb(){
returnthis
.a+1},//存取器(寄存器)属性setb(value){this.a=value}}2.属性特性数据属性有4个特性:
last_edc
·
2020-04-04 22:39
第五章 继承
1.伪类varMammal=function(name){this.name=name;}Mammal.prototype.getName=function(){
returnthis
.name;};Mammal.prototype.says
有理想_
·
2020-04-04 22:17
8.第二篇:第8章 单例模式
varfn={a:function(){console.log(a);}c:function(){
returnthis
.a();}};//利用单例模式来保存不让修改的静态变量varConf=(function
爱吃鱼的肥兔子
·
2020-04-04 22:00
慕课网《前端JavaScript面试技巧》学习笔记(2)-原型和原型链
写一个原型链继承的例子3.描述new一个对象的过程知识点#####构造函数functionFoo(name,age){this.name=namethis.age=agethis.class='class-1'//
returnthis
Yangkeloff
·
2020-04-04 05:43
What's this?
varobj={};varfn=function(){
returnthis
;}fn()===this;//truefn.call(obj)===
咩咩咩1024
·
2020-04-04 04:33
nodejs输出图形
functionShape(){this.printStr="";returnnewShape.prototype.init();}Shape.prototype={//换行init:function(){
returnthis
一直玩编程
·
2020-04-03 19:33
一个奇怪的函数内this的上下文切换实例
1.引子5月底的一天,还是平静的一天.还是熟悉的味道.中级群的小朋友在群里丢上来一个问题.看着也不是很难.vara={fun:function(){
returnthis
.value;},value:1}
拖鞋莫止步
·
2020-04-03 15:15
javascript用defineProperty实现简单的双向绑定方法
用于给对象添加自定义属性具体用法如下:constobj={_value:1};Object.defineProperty(obj,'value',{get:function(){console.log('get方法执行');
returnthis
张磊
·
2020-04-03 11:35
你不知道的JavaScript:关于this
下面我们看一个例子:functionidenitfy(){
returnthis
.name.toUpperCase();}functionspeak(){vargreeting='hello'+idenitfy.call
FeRookie
·
2020-04-03 09:33
JS命名空间
命名空间namespace1.对象字面量varMYNAMESPACE={person:function(name){this.name=name;this.getName=function(){
returnthis
.name
5ab2de3d26e8
·
2020-04-03 07:44
普通字符串转价格格式
1.系统方法console.log((1003457678770.089).toLocaleString());2.正则方法String.prototype.toPrice=function(){
returnthis
.replace
MF_遇见零一
·
2020-04-03 00:06
继承
原型继承functionSuperType(){this.property=true;}SuperType.prototype.getSuperValue=function(){
returnthis
.property
黄小猛
·
2020-04-02 05:19
Kotlin-函数和lambda表达式学习笔记
1.Kotlin函数可以使用中缀表示法来调用,当满足一下条件时:infixfunInt.add(x:Int):Int{
returnthis
+x}funprintAdd(){valvalue=2add3/
郑在学_blog
·
2020-04-01 22:33
《JavaScript 模式》读书笔记(5)— 对象创建模式2
JavaScript中所有对象的成员是公共的:varmyobj={myprop:1,getProp:function(){
returnthis
.myprop;}};console.log(myobj.myprop
Zaking
·
2020-04-01 15:00
JS原型对象扩展
varstr1="Hellozhouzhou";String.prototype.trimx=function(){
returnthis
.replace(/^\s*|\s*$/g,"");}varp=str1
lifeColder
·
2020-03-31 09:43
关于javascript里的面向对象的new
用new和不用new的区别;```functionting(){this.name='bnkeyle';this.age=27;varborn=1990;
returnthis
.name;}/*varting2
bnkeyle
·
2020-03-31 02:15
Tencent X5 WebView 滚动到指定位置
相应源码为publicintgetWebScrollY(){
returnthis
.e?this.f.getView().getScrollY():this.g.
姜小鱼Qyer
·
2020-03-29 22:24
Java中String的concat方法分析
1、源码展示publicStringconcat(Stringstr){intotherLen=str.length();if(otherLen==0){
returnthis
;}intlen=value.length
BestbpF
·
2020-03-29 14:26
js大公司面试题——方法执行顺序
直接上题:functionNumber(){getNumber=function(){console.log(0)}
returnthis
;}Number.getNumber=function(){console.log
Nice先生的狂想曲
·
2020-03-29 07:39
JS数组去重的n种解法
this.length||this.length==0)
returnthis
;this.s
公子七
·
2020-03-29 04:20
【面试题】算法
一、简单算法的实现1.用两个堆栈实现队列classQuene{constructor(){this.inputStack=[];this.outputStack=[];}enquene(item){
returnthis
.inputStack.push
南慕瑶
·
2020-03-28 18:23
(二十二)VueCli3.0全栈——设置顶部导航和下拉菜单
components下新建HeadNav.vue购课在线后台管理系统欢迎{{user.name}}个人信息退出exportdefault{name:"head-nav",computed:{user(){
returnthis
彼得朱
·
2020-03-28 12:22
vue前端面试题汇总(常问-进阶篇)
computed上面的属性不可在vuedata中声明,不能做异步处理data:{firstName:'Foo',lastName:'Bar'},computed:{fullName:function(){
returnthis
.firstName
yumang111
·
2020-03-28 12:44
vue
javascript
前端
创建对象的几种方式
真是百看不如一练啊/*varbox=newObject();//创建一个对象box.name="xiaoju";//给对象添加一个属性box.age=100;box.run=function(){//定义一个方法
returnthis
.name
南蓝NL
·
2020-03-27 21:30
【管子先生的Node之旅·6】V8中的JavaScript(三)
FUNCTIONV8中还提供了.bind用来改变this的引用:functiona(){
returnthis
.hello=='hello';}varb=a.bind({hello:'hello'});b
管子先生
·
2020-03-27 18:10
给所有类扩展一个方法
Date,Image等这样的构造函数(类),添加一个方法做法:Function.prototype.method=function(name,func){this.prototype[name]=func;
returnthis
itstrive
·
2020-03-26 18:44
前端常见面试题
this指向这个对象执行代码,即给this赋值返回thisfunctionFun(name,age){this.name=name;this.age=age;this.class='classname'//
returnthis
jia林
·
2020-03-26 07:09
第十八节 扩展函数
String类添加空判断方法funmain(args:Array){varstr="张三"println(str.myIsEmpty())}funString.myIsEmpty():Boolean{
returnthis
最美下雨天
·
2020-03-25 21:37
vue的页面缓存,菜单点击刷新页面
,然后点击10条中的一条去查看详情,再点击返回,列表重新回到100条页面AppMain.vue:-->exportdefault{name:'AppMain',computed:{//key(){//
returnthis
JennyGao66
·
2020-03-25 17:14
JavaScript之继承
functionSuperType(){this.property=true;}SuperType.prototype.getSuperValue=function(){
returnthis
.property
落花的季节
·
2020-03-25 11:50
js设计模式
构造函数模式varPerson=function(name,age){this.name=name;this.age=age;}Person.prototype.sayName=function(){
returnthis
.name
htkz_117f
·
2020-03-25 06:48
上一页
36
37
38
39
40
41
42
43
下一页
按字母分类:
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
其他