The front-end management program of the shopping cart --- only interacts with the server once (2. javascript part)

Source: Internet
Author: User
Cart. js
Save it as cart. js and put it in the same directory as the previous html.
//------------------------------------------------------------------------------
//
// File name: cart. js
//
// Description: Use the javascript function library at the front end of the shopping cart.
//
// Function list: On_Cancel (txtAmount, txtSum) ---- cancel this item
// On_Update () ---- update quantity
// On_Del () ---- delete all
// UpdateDate () ---- update form Display
// Round () ---- rounding the number of specified decimal places
//
// Aurthor: LiuYunpeng
//
// Date: 2000/09/03
//
// History: 2000/09/03 version 1.0
//
//------------------------------------------------------------------------------
// ---------------- Code begin here ------------------------------------------
Function On_Cancel (txtAmount, txtSum)
    {
TxtAmount. value = 0;
TxtSum. value = 0;
UpdateData ();
    }
// Update the form Display
Function UpdateData ()
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.