Сообщение от taxsin
|
надо заменяnm формы по нажатию одной кнопки допустим <input type="button">
|
Оно?
<!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">
</style>
<script type="text/javascript">
$(document).ready(function(){
$('input[type="button"]').click(function(){
$('input[type="text"]').each(function(){
$(this).after($(this).val());
$(this).remove();
});
});
});
</script>
</head>
<body>
<form>
<label>ФИО: <INPUT TYPE="text" SIZE="20" name="lol" /></label>
<label>город: <INPUT TYPE="text" /></label>
<input type="button" value="Принять">
</form>
</body>
</html>