Сообщение от redjetfire
|
3. Добавление пожелания реализуются на стороне браузера средствами DHTML.
4. Новое пожелания отображается первым вверху.
...
Помогите пожалуйста с Пунктом 3
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
#new_message {
display: none;
}
</style>
<script type="text/javascript">
$(document).ready(function (){
$('#command > button').click(function (){
toggle();
$('#new_message :text').get(0).select();
});
$('#new_message .cansel').click(function (){
toggle();
});
$('#new_message .add').click(function (){
var val;
val=$('#new_message :text').val();
val='<p>'+val+'</p>'
$('#list').prepend(val);
toggle();
$('#new_message :text').val('');
});
});
function toggle() {
$('#command > button').slideToggle();
$('#new_message').slideToggle();
};
</script>
</head>
<body>
<div id='list'></div>
<div id='command'>
<button>Добавить пожелание</button>
<div id='new_message'>
<input type='text' />
<button class='add'>Добавить</button>
<button class='cansel'>Отмена</button>
<div>
</div>
</body>
</html>