Показать сообщение отдельно
  #2 (permalink)  
Старый 26.01.2014, 21:49
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,127

Сообщение от hfts_rider
Как сделать так что бы у меня вышли 2 блока с разными параметрами.
а разве это не так?
<!DOCTYPE HTML>

<html>

<head>
  <title>Untitled</title>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script>
     $(document).ready(function(){

function Boxs(width,height,bgColor){
this.width = width;
this.height = height;
this.bgColor = bgColor;
}

var box = new Boxs(250,250,'green');
var box2 = new Boxs(200,200,'yellow');

//Создание коробки
Boxs.prototype.createBox = function(){
$('#idDiv').append(
$('<div/>').css({'width' : this.width+'px', 'height' : this.height+'px', 'background-color' : this.bgColor, 'margin' : '80px'})
);
}

box.createBox();
box2.createBox();

});

  </script>
</head>

<body>
   <div id="idDiv" ></div>
</body>

</html>
Ответить с цитированием