Сообщение от sonntagausgang
|
значение можно записать и в какую-нибудь переменную
var expression = document.getElementById("quantity").value;
|
Да да, я сейчас на этом этапе.
А как мне это значение вывести в блоке <div> например?
<form>
<table id="zakazTable">
<tr>
<td><p>Венге</p></td>
<td>
<input type="text" value="" id="quantity" >
<input type="button" value="Заказать" id="zakazat" onclick="someFunc()">
</td>
</tr>
</table>
<div id="zayavka"></div>
</form>
<script>
function someFunc(){
var quantity = document.getElementById("quantity").value;
var price = quantity * 9000;
//alert(price);
}
</script>