Сообщение от Noggan
|
реально для меня js, как огромный лес
|
В лесу валом возможностей.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
.off {
display: none;
}
</style>
<script type='text/javascript'>
$(function(){
$('#welcome').click(function(){
$(this).addClass('off');
$('#info').removeClass('off');
});
$('#info').submit(function(){
$(this).addClass('off');
$('#done span').text($('#name').val());
$('#done').removeClass('off');
return false;
});
});
</script>
</head>
<body>
<img src="https://javascript.ru/forum/images/smilies/smile.gif" id="welcome" />
<form class='off' id='info'>
<input type="text" id="name" placeholder="Введите имя" />
</form>
<p id="done" class='off'>Вот так надо, <span></span>!</p>
</body>
</html>