Показать сообщение отдельно
  #3 (permalink)  
Старый 21.09.2012, 13:45
Аспирант
Отправить личное сообщение для vashurin Посмотреть профиль Найти все сообщения от vashurin
 
Регистрация: 01.04.2008
Сообщений: 52

Сообщение от bot87 Посмотреть сообщение
function Construct1(x,y){
	var coords_x=x;
	var coords_y=y;
	this.pub=function(){
	alert(coords_x-coords_y);
	}
	}
Construct1.prototype.say=function(){
	alert(coords_x - coords_y);
	}	
obj=new Construct1(13,-9);
obj.pub();//good!!!
obj.say()//coords_x is not defined

Помогите исправить

function Construct1(x,y){
	this.coords_x=x;
	this.coords_y=y;
	this.pub=function(){
	alert(this.coords_x-this.coords_y);
	}
	}
Construct1.prototype.say=function(){
	alert(this.coords_x  -  this.coords_y);
	}	
obj=new Construct1(13,-9);
obj.pub();//good!!!
obj.say()//coords_x is not defined

this

Последний раз редактировалось vashurin, 21.09.2012 в 14:29.
Ответить с цитированием