Сообщение от Dean
|
Страница выдается основываясь на выборе чекбокса (index1.html или index2.html)
|
Предложу такой вариант...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://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'>
</style>
<script type='text/javascript'>
$(function(){
$('#req').submit(function(){
this.action=$(this).find('[name="page"]:checked').val();
});
});
</script>
</head>
<body>
<form id="req" name="req">
<label>Имя</label><input type="text" name="name" required /> <br />
<label>Email</label><input type="text" name="email" required /><br />
<label>Страница 1</label><input type="radio" name="page" value="index1.html" checked/><br />
<label>Страница 2</label><input type="radio" name="page" value="index2.html" /><br />
<input type="submit" value="Отправить" />
</form>
</body>
</html>