Сообщение от tiksi
|
Надеюсь на Вашу помощь.
|
Как вариант...
<!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">
#now,
#tomorrow {
display: none;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('.now').click(function(){
$('#now').show();
$('#tomorrow').hide();
$('#go').data('id','now');
});
$('.tomorrow').click(function(){
$('#tomorrow').show();
$('#now').hide();
$('#go').data('id','tomorrow');
});
$('#go').click(function(){
var id=$(this).data('id');
if (id=='') {
alert('Ничего готового нет...');
return;
};
var o=$('#'+id);
var val=o.val();
o.prev('p').children('span').text(' в '+val)
o.hide();
$('#go').data('id','');
});
});
</script>
</head>
<body>
<input type="text" name="Ok" id="Ok"/>
<p class="now">Сегодня<span></span></p> <input type="text" name="now" id="now" value="13:45"/>
<p class="tomorrow">Завтра<span></span></p> <input type="text" name="tomorrow" id="tomorrow" value="15:30"/>
<br/>
<input id='go' type="button" value="Готово" />
</body>
</html>