index.html
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Конвертер валют</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Money Converter</h1>
<p>
<label>$</label>
<input type="number" id="inputdol" placeholder="$" oninput="moneyConverter(this.value)" onchange="moneyConverter(this.value)"/>
</p>
<p>RUB <span id="outputrub"></span></p>
<script src="script.js"></script>
</body>
</html>
script.js
function moneyConverter(valNum) {
document.getElementById('outputrub').innerHTML=valNum*60;
}
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Конвертер валют</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Money Converter</h1>
<p>
<label>$</label>
<input type="number" id="inputdol" placeholder="$" oninput="moneyConverter(this.value)" onchange="moneyConverter(this.value)"/>
</p>
<p>RUB <span id="outputrub"></span></p>
<script src="script.js"></script>
</body>
</html>
script.js
function moneyConverter(valNum) {
document.getElementById('outputrub').innerHTML=valNum*60;
}
Комментариев нет:
Отправить комментарий