Показать сообщение отдельно
  #1 (permalink)  
Старый 25.06.2011, 14:11
Новичок на форуме
Отправить личное сообщение для diamed Посмотреть профиль Найти все сообщения от diamed
 
Регистрация: 25.06.2011
Сообщений: 4

Как изменить стиль дива
не работает скрипт
при нажатии на кнопку должен меняться стиль дива с классом s1 на класс s2


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>вопрос</title>
<style>
.s1{color: red;font-size: 40px;}
.s2{color: #000;font-size: 40px;}
.all{position: relative;margin: 0 auto;width: 200px;height: auto;}
</style>
<script type="text/javascript">
$('div').click(function(){
if ($(this).hasClass('s1'))
{
alert('изменить класс');
$(this).removeClass('s1').addClass('s2');
}
});
</script>
</head>
<body>
<div class="all">
<div class="s1">Вопрос</div>
<div class="s2">Ответ</div>
<a href="#"><button>Изменить стиль</button></a>
</div>

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