Показать сообщение отдельно
  #11 (permalink)  
Старый 04.09.2011, 21:09
Аватар для Андрей38
Профессор
Отправить личное сообщение для Андрей38 Посмотреть профиль Найти все сообщения от Андрей38
 
Регистрация: 11.12.2010
Сообщений: 261

$(document).ready(function () {
		var i = 0; // создаем переменную i
		while(i < 4){ // делать пока i меньше 4
(function(i){
			$("#test"+i).click(function(){viewInfo(i)}) // для каждой кнопки выставлем функцию с параметром её id
})(i++);	
	}
	
		
		})
	function viewInfo(id) //собственно ,сама функция вывода id
	{
		alert(id) 
	}

http://szenprogs.ru/blog/jquery_vstr.../2010-10-13-89

http://myrusakov.ru/cikly-javascript.html
<!-- * http://myrusakov.ru/cikly-javascript.html-->
<script type="text/javascript">
for (i = 0; i < 30; i++) {
	  if (i <20) continue;
//  if (i == 10) break;
 // document.write( ' <div  id='+i+'> id= '+i+' </div>  ' )
  alert( ' <div  id='+i+'> id= '+i+' </div>  ' );
}
</script>

http://xhtml.co.il/ru/jQuery/toArray
http://xhtml.co.il/ru/jQuery/Типы/Массив
http://xhtml.co.il/ru/jQuery/get !!!!!!

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>

  $(document).ready(function(){
    $("*", document.body).click(function (e) {
      e.stopPropagation();
      var domEl = $(this).get(0);
    alert(domEl.tagName);
    });
  });
  </script>
  <style>
  span { color:red; }
  div { background:yellow; }
  </style>

</head>
<body>
  <span> </span>
  <p>In this paragraph is an <span>important</span> section</p>

  <div><input type="text" /></div>
</body>
</html>

http://szenprogs.ru/blog/jquery_vstr.../2010-10-13-89
__________________
http://www.youtube.com/watch?feature...&v=cz0uN1ZNuM0
История не в теории ,а по факту

Последний раз редактировалось Андрей38, 17.09.2011 в 19:08.
Ответить с цитированием