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
获取某一元素到页面顶端的距离
必须要脱离文档流的,relative没有用)的的顶部的值原生:方法一:递归节点的offsetTopfunctiongetElementToPageTop(el){if(el.parentElement){
returnthis
摘笑
·
2020-01-06 10:49
js - 面向对象知识点
functionPerson(name){this.name=name;this.showName=function(){alert(this.name);}//隐式返回当前的this,所以return可以省略//
returnthis
d992060a2c01
·
2020-01-06 00:28
react-to-print
react自定义打印组件exportdefaultclassAppextendsBaseApp{render(){
returnthis
.loadingResource(['inventory','dmt
fulen
·
2020-01-05 12:06
java笔记--Object类
classPersonextendsObject{privateintage;Person(intage){this.age=age;}/*//比较Person的年龄,是否是同龄人publicbooleancompare(Personp){
returnthis
.age
吃饱喝足搬代码丶
·
2020-01-04 14:31
computed
varexample=newVue({data:{a:1},computed:{b:function(){
returnthis
.a+1}}})example.a++console.log(example.b
狐尼克朱迪
·
2020-01-04 14:10
call,apply,bind实现以及原理
(一)call源码解析例子:functionadd(c,d){
returnthis
.a+this.b+c+d}varobj={a:1,b:2}console.log(add.call(obj,3,4))
一现_
·
2020-01-04 11:42
(BTMST)js变量提升面试题解析
###变量提升综合面试题functionFoo(){getName=function(){alert(1);};
returnthis
;}Foo.getName=function(){alert(2);}
getElementsByMK
·
2020-01-04 11:02
使用React Context进行状态管理(一)共享变量
loginHandler=user=>{this.setState({user:user})}logoutHandler=()=>{this.setState({user:null})}render(){
returnthis
.sta
du1dume
·
2020-01-03 20:53
第六章(3):继承
constructor*/functionSuper(){this.property='super'this.arr=[1,2]}Super.prototype.getValue=function(){
returnthis
.property
日暮途远_
·
2020-01-03 20:50
this_原型链_继承
有什么作用,什么区别1.function.prototype.call()函数实例的call方法可以指定函数内部this的指向,即函数执行时所在的作用域varobj={};varfn=function(){
returnthis
漂于行
·
2020-01-03 13:21
前端 实现一个简易版的vue,了解vue的运行机制
函数渲染{{fnForm()}}js调用代码newVue({el:'#wrap',data:{form:0,test:'我是粗体',aaa:{bb:'123'}},computed:{newform(){
returnthis
.form
你都如何回忆我_z
·
2020-01-03 09:25
jquery方法大全
testImage"});给某个元素添加属性/值,参数是map$("img").attr("src","test.jpg");给某个元素添加属性/值$("img").attr("title",function(){
returnthis
扑克脸_457e
·
2020-01-03 07:04
vue 响应式解析
totalPriceWithSale}}varvue=newVue({el:'#app',data:{price:5,quantity:10,sum:0},computed:{totalPriceWithSale(){
returnthis
.p
daidai
·
2020-01-03 02:39
vue.js
javascript
前端
响应式
【C#学习笔记】C#中的?和??
publicintpar(){
returnthis
.para??0;}值类型后面加问号表示可为空null(Nul
Jason_Yuan
·
2020-01-02 08:51
读书笔记
.on('event','selector',event.data,function());插件(function($){$.fn.priceInterval=function(){//body...
returnthis
.each
futurefeeling
·
2020-01-02 03:41
前端常见的设计模式
构造函数模式functionCar(speed){this.speed=speed}Car.prototype.accelerate=function(){
returnthis
.speed+=1}letrun
曾祥辉
·
2020-01-01 06:21
手机固定号码美化
之前工作需求写的一个基于jquery的小工具,可以把手机号码美化成133-1024-1024,及固定电话号码美化成0755-6666666(function($){$.fn.phoneView=function(){
returnthis
.each
村长很忙
·
2020-01-01 03:57
ES6 - 对象简洁语法及对象新增方法
letage=18;letjson={name,//name:nameage,//age:age/*showA:function(){console.log(this.name);}*/showA(){
returnthis
.na
饮杯梦回酒
·
2020-01-01 02:18
call、apply、bind 的用法分别是什么?
varobj={};varf=function(){
returnthis
;};f()===window//truef.call(obj)===obj//true上面代码中,全局环境运行函数
_zyw_
·
2019-12-31 00:52
前端琐事
今天分享一道题目:varname='jay';varperson={name:'kang',pro:{name:'Michael',getName:function(){
returnthis
.name;
Aaron_chen2017
·
2019-12-30 22:22
ES6基础之——get 与 set
12345678910111213141516171819202122232425classChef{constructor(food){this.food=food;thid.dish=[];}//gettergetmenu(){
returnthis
.dish
漫思
·
2019-12-30 16:00
Java中的Enum的使用与分析
publicenumEnumTest{FRANK("Thegivennameofme"),LIU("Thefamilynameofme");privateStringcontext;privateStringgetContext(){
returnthis
.context
一木各
·
2019-12-30 13:20
尝试解析js面试题(一)
、this指向、对象、解析顺序、运算符优先级等概念的综合性考题;话不多说,先上题;原作者解析:小小沧海(博客园)functionFoo(){getName=function(){alert(1);};
returnthis
小pxu
·
2019-12-30 11:48
JS的表单
提交表单/*String.prototype.trim()=function(){
returnthis
.replace(/^\s+/,"").replace(/\s+$/,"");}*/varok=false
动起来mygod
·
2019-12-30 11:00
javascript设计模式
functionCar(name,year,miles){this.name=namethis.year=yearthis.miles=miles}Car.prototype.run=function(){
returnthis
.name
好好顽
·
2019-12-30 02:08
秒懂javascript的原型(prototype)对象、原型链的前世今生
,原型链的来龙去脉.functionCreateObj(uName){this.userName=uName;}CreateObj.prototype.showUserName=function(){
returnthis
.userName
艺术诗人
·
2019-12-28 18:00
构造函数用途及优缺点
1functionCreateObj(uName){2this.userName=uName;3this.showUserName=function(){4
returnthis
.userName;5}6
艺术诗人
·
2019-12-28 17:00
spring mvc接口接口定义map接收参数如果缺少@RequestParam会导致如下错误
selectNormalGoodsList",method=RequestMethod.GET)publicRespDataselectNormalGoodsList(Pagepage,@RequestParamMapparam){
returnthis
.goodsDataStatisticsService.selectNormalGood
李北北
·
2019-12-28 09:51
职责链模式
varChain=function(fn){this.fn=fn;this.successor=null;}Chain.prototype.setNextSuccessor=function(successor){
returnthis
.s
卡卡卡卡颂
·
2019-12-28 04:02
Vue中计算属性computed的实现原理
一个最基本的例子如下:{{fullName}}newVue({data:{firstName:'Xiao',lastName:'Ming'},computed:{fullName:function(){
returnthis
.firstName
指尖跳动
·
2019-12-28 00:24
js 基础之filter(v => !!v)
无意中,在网上看到了这么一句代码:FormatText.prototype.filterEntries=function(){
returnthis
._data=this.
夏朵朵
·
2019-12-27 07:44
javascript
【宠粉通道】叫我讲解的一道前端JS面试题-灵魂三问:prototype?类的prototype是什么?对象的proto是什么
让我们看看截图先,来源于wx群:看看我是怎么回答的:functionFoo(){getName=function(){alert(1);};
returnthis
;}vargetName;//只提升变量声明
达达前端小酒馆
·
2019-12-27 07:21
html
Vue学习笔记(二)
基本使用具体代码:{{name+''+age+'岁'}}{{info}}constapp=newVue({el:'#app',data:{name:'zww',age:20},computed:{info(){
returnthis
.name
LqZww
·
2019-12-26 17:00
PTA中的Java练习题
classCircle{privatedoubleradius;publicCircle(doubleradius){this.radius=radius;}publicdoublegetRadius(){
returnthis
.radius
Trouble Maker_chen
·
2019-12-26 16:50
练习
java
js的原型和原型链
//构造函数functionarr(name,text){this.name=name;this.text=text;this.class='clo-1';//
returnthis
,默认有这一行}letf
懵智
·
2019-12-26 03:00
【宠粉通道】叫我讲解的一道前端JS面试题-灵魂三问:prototype?类的prototype是什么?对象的proto是什么
让我们看看截图先,来源于wx群:看看我是怎么回答的:functionFoo(){getName=function(){alert(1);};
returnthis
;}vargetName;//只提升变量声明
达达前端小酒馆
·
2019-12-26 01:00
Vue 中计算属性的 setter 和 getter
先看一段代码:{{fullName}}letvm=newVue({el:'#app',data:{firstName:'Dell',lastName:'Lee'},computed:{fullName(){
returnthis
.firstName
astak3
·
2019-12-26 00:07
Javascript中的this关键字、call和apply
eg:varn={name:'abc',getName:function(){
returnthis
.name;}};n.getName;//functionn.getName()n.ge
初夏_summer
·
2019-12-25 10:33
js面向对象的constructor与instanceof
functionCreatePerson(name,age){this.name=name;this.age=age;}CreatePerson.prototype.showName=function(){
returnthis
.name
youfrweb
·
2019-12-25 06:01
vue-cli3脚手架- Cannot read property 'name' of undefined"
name}}{{msg}}exportdefault{name:"mes",props:{nubmer:Number,user_msg:Array,},computed:{name:function(){
returnthis
.user_msg
慌拥
·
2019-12-24 10:00
2.快速排序
Array.prototype.quick_sort=function(){varlen=this.length;if(len<=1){
returnthis
.slice(0);}varleft=[];varright
YanerYang
·
2019-12-24 02:43
Kotlin中,函数作为参数,T.()->Unit 和 ()->Unit 的区别
kotlin开发中,经常看到一些系统函数里,用函数作为参数,但是又和我们自己写的不太一样大概是这样子的:publicinlinefunT.apply(block:T.()->Unit):T{block()
returnthis
xiaolei123
·
2019-12-24 02:12
js 的继承
原型链实现继承1.1代码实现//父类型functionSuperType(){this.property=true;}SuperType.prototype.getSuperValue=function(){
returnthis
.property
hileix
·
2019-12-24 01:28
javascript
apply call bind
,call的存在是为了改变函数体内部this的指向,改变作用域的.来举个栗子:functionPeople(){}People.prototype={age=18,sayAge=function(){
returnthis
.age
BigBigWen大文
·
2019-12-23 19:44
用jquery实现Ping测试网络连接性
fn.ping=function(options){varopts=$.extend({},$.fn.ping.defaults,options);varstime=newDate().getTime();
returnthis
.each
码农界的小菜鸟
·
2019-12-23 17:00
vue起步
varvm=newVue({el:'#d1',data:{site:"哈哈",url:"www.baidu.com",alexa:"10000"},methods:{details:function(){
returnthis
.site
crazy戴夫
·
2019-12-23 15:00
JavaScript ES6中 class的本质
es6-代码一classMath{//构造函数constructor(x,y){this.x=x;this.y=y;}add(){
returnthis
.x+this.y;}}letmath=newMath
邢走在云端
·
2019-12-23 14:37
mpvue下不同标签页样式的改变
此外还可以用computed方法生成class或者style字符串,插入到页面中style的使用方法一方法二computed:{styleSelect(){
returnthis
.p
斐硕人
·
2019-12-22 18:08
C#深度拷贝,浅拷贝
usingSystem.Runtime.Serialization.Formatters.Binary;[Serializable]classPerson:ICloneable{publicobjectClone(){
returnthis
.M
晓龙酱
·
2019-12-22 07:33
关于JS闭包中的this执行讨论
learning_javascript_closures.html例一varname="TheWindow";varobject={name:"MyObject",getNameFunc:function(){returnfunction(){
returnthis
.name
秘果_li
·
2019-12-22 03:32
上一页
40
41
42
43
44
45
46
47
下一页
按字母分类:
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
其他