Сообщение от Элиас
|
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>