HTML simple shopping quantity applet

HTML simple shopping quantity applet

This article shares a simple HTML shopping quantity applet for your reference. The specific content is as follows

XML/HTML CodeCopy content to clipboard
  1. < html >   
  2.     < head >   
  3.   
  4.        < title > Shopping quantity applet </ title >   
  5.   
  6.      < script >   
  7. function sub()
  8. {
  9.   
  10. var a = buy.ans.value ;
  11. //alert(a);
  12.              a = parseInt (a);
  13. a--;
  14. if(a < 0 )
  15.               a = 0 ;
  16.              buy.ans.value = a;
  17. }
  18. function add()
  19. {
  20. var a = buy.ans.value ;
  21.              a = parseInt (a);
  22. a++;
  23.              buy.ans.value = a;
  24. }
  25.          </ script >   
  26.   
  27.     </ head >   
  28.   
  29.     < body >   
  30.       < form   name = "buy" >   
  31. Purchase quantity < input   type = "button"    value = "-"   onclick = "sub()" >   
  32.              < input   type = "text"   name = "ans"   value = "1" >   
  33.              < input   type = "button"    value = "+"   onclick = "add()" >   
  34.   
  35.       </ form >   
  36.      </ body >   
  37. </ html >   
  38.   

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  MySQL Tutorial: Subquery Example Detailed Explanation

>>:  3 Tips You Must Know When Learning JavaScript

Recommend

Summary of SQL deduplication methods

When using SQL to extract data, we often encounte...

A brief discussion on the problem of forgotten mysql password and login error

If you forget your MySQL login password, the solu...

Use render function to encapsulate highly scalable components

need: In background management, there are often d...

Teach you how to write maintainable JS code

Table of contents What is maintainable code? Code...

Detailed explanation of common methods of JavaScript Array

Table of contents Methods that do not change the ...

Sample code for implementing radar chart with vue+antv

1. Download Dependency npm install @antv/data-set...

Installation and use tutorial of Elasticsearch tool cerebro

Cerebro is an evolution of the Elasticsearch Kopf...

JavaScript realizes the generation and verification of random codes

The generation and verification of random codes i...

Example method of deploying react project on nginx

Test project: react-demo Clone your react-demo pr...

Vue implements chat interface

This article example shares the specific code of ...

A brief analysis of MySQL parallel replication

01 The concept of parallel replication In the mas...