javascript 中函数的prototype是什么?
functiontest(){};alert(test.prototype);alert(String.prototype);alert(Array.prototype)...
function test(){};
alert(test.prototype);
alert(String.prototype);
alert(Array.prototype);
_proto_是指原型对象,但是prototype 是什么意思啊?指向什么,构造器的prototype指向是什么? 展开
alert(test.prototype);
alert(String.prototype);
alert(Array.prototype);
_proto_是指原型对象,但是prototype 是什么意思啊?指向什么,构造器的prototype指向是什么? 展开
展开全部
亲,prototype是javascript中每个类都具有的一个属性叫做原型,他的功能是给这个类的每个对象都添加一个共同的方法
追问
String.prototype
Object.prototype
Function.prototype
再请问一下他们三个的值是什么呢
追答
他们的值是不固定的,可以随意创建个函数然后指定给他们,制定的次数也是不限的比如
String.prototype.show=function()
{
alert(this);
}
var a="aaaa";
alert(a.show());//a是String类型,它就具有了show方法
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询