Advertisement
Guest User

Untitled

a guest
Aug 18th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. // ваша функция
  5. function conversionPrice(itemId){
  6.   var newCnt = $('#itemCnt_' + itemId).val();
  7.   var itemPrice = $('#itemPrice_' + itemId).attr('value');
  8.   var itemRealPrice = newCnt * itemPrice;
  9.  
  10.   $('#itemRealPrice_' + itemId).html(itemRealPrice);
  11. }
  12. </script>
  13. </head>
  14. <body>
  15. <!-- ваш html -->
  16. <input id="itemCnt_price" type="text" value="2" onkeyup="conversionPrice('price');">
  17. <input id="itemPrice_price" type="text" value="2000">
  18. <span id="itemRealPrice_price"></span>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement