Показать сообщение отдельно
  #5 (permalink)  
Старый 11.11.2015, 10:32
Аватар для EmperioAf
Профессор
Отправить личное сообщение для EmperioAf Посмотреть профиль Найти все сообщения от EmperioAf
 
Регистрация: 15.01.2015
Сообщений: 622

Сообщение от Элиас
B = document.quadratic.B.value;
C = document.quadratic.C.value;
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>ГГ</title>
<style>
* {
  margin:0;
  padding: 0;
  outline: none;
}
</style>
</head>
<body>
<form name="quadratic" action="">
  <input type="text" name="A" value="eto A">
  <input type="text" name="B" value="eto B">
  <input type="text" name="C" value="eto C">
</form>
  <script>
alert(document.quadratic.A.value);
alert(document.quadratic.B.value);
alert(document.quadratic.C.value);
  </script>
</body>
</html>
Ответить с цитированием