选择题:基本上前端基础,涉及到JQuery
写出输出和理由:
1.
javascript
var x = 10;
var obj = {
x: 20,
f: function(){
console.log(this.x);
var foo = function(){
console.log(this.x);
}
foo();
}
};
obj.f();
20 10 第一个再对象方法里,指向相应对象,第二个this为函数内this,没有对象,指向windows
this指向最后调用它的对象
2.
function Fn(){
var n = 10
this.m = 20
this.a = function() {
console.log(this.m)
}
}
var f1 = new Fn
Fn.prototype = {
a: function(){
console.log(this.m + 10)
}
}
var f2 = new Fn
console.log(f1.constructor) // 输出结果
console.log(f2.constructor) // 输出结果
f1.a() // 输出结果
f2.a() // 输出结果
f2.__proto__.a() // 输出结果
ƒ Fn(){
var n = 10
this.m = 20
this.a = function() {
console.log(this.m)
}
}
ƒ Object() { [native code] }
20
20
NaN
原因:先从自身找,再从原型链上面找
给几个块
left宽度固定,要求right宽度自适应,r内有top和bottom两个块;
要求top贴right顶边,bottom贴right底边
算法题,过于简单,不写了,考察会不会用api
#4399笔试##前端开发实习#