Показать сообщение отдельно
  #6 (permalink)  
Старый 18.11.2014, 14:53
Интересующийся
Отправить личное сообщение для Phoenix13 Посмотреть профиль Найти все сообщения от Phoenix13
 
Регистрация: 18.11.2014
Сообщений: 14

<!doctype html>
<html>
<head>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.min.js">
</script>
<script>
	$(document).ready(function(){
		$("button").click(function (){
			$("p").text(function(){
			var color='';
			var p=document.getElementsByTagName('p');
			for(var i = 0; i < p.length; i++){
			color+=$(p[i]).css("background-color")+'\n';
				}
				alert(color);
			});		
		});
	});
</script>
</head>
<body>
<p style = "background-color:red">this is red</p>
<p style = "background-color:green">this is green</p>
<p style = "background-color:blue">this is blue</p>
<button> return </button>
</body>
</html>



Вот как сделал.

Последний раз редактировалось Phoenix13, 18.11.2014 в 15:01.
Ответить с цитированием