Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
290 views
in Technique[技术] by (71.8m points)

Use javascript to set value of input tag

I'm trying to run a script inside a form which calculates a discount based on the quantity a user selects. The form is submitted to a payment gateway, and must include this tag:

<input type="hidden" name="discount" value="0.00"/> 

Where the discount value changes according to the user's selection.

So this is how my form looks, but the tag isn't being sent properly. I don't know what I am doing wrong.

<select name="quantity">
      <option value="1">1</option>
      <option value="2">2</option>
      <option value="3">3</option>
</select>
<input type="hidden" name="amount" value="10.00"/>

<script type="text/javascript">
<input type="hidden" name="discount"
if (quantity==3)
   {
   value="5.00";
   }
 else if (quantity==2)
   {
   value="2.00";
   }
 else
   {
   value="0.00";
   }
/> 
</script>

I'm so noob - but I have been trying my best! Please help...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You seem to have two main problems:

  1. You combine HTML and JavaScript into a single block
  2. You fail to ensure that your JavaScript executes when the user changes the quantity

Your first step should be to separate the <input type="hidden" name="discount" /> out from the JavaScript block. It is HTML not JavaScript, so the JavaScript engine won't know what to do with it.

<input type="hidden" name="discount" /> 
<script type="text/javascript">
if (quantity==3)
{
   value="5.00";
}
else if (quantity==2)
{
   value="2.00";
}
else
{
   value="0.00";
}
</script>

Next up you need to ensure the JavaScript gets executed when the user changes the quantity. To do this, put your code into a named function and wire that up to the onchange event if the quantity element:

<script type="text/javascript">
function updateDiscount()
{
    var select = document.getElementById("quantity");
    var quantity = select.options[select.selectedIndex].value;
    if (quantity==3)
    {
       value="5.00";
    }
    else if (quantity==2)
    {
       value="2.00";
    }
    else
    {
       value="0.00";
    }
}
document.getElementById("quantity").onchange = updateDiscount;
</script>

Note that we now also look up the quantity value in the JavaScript. This is again because you cannot simply mix JavaScript and HTML in the way you did. For the lookup to work, you will need to add id attributes to your elements with the same value as your current name attributes (which are needed when you submit the form).

With these changes you are almost there. You're now setting the discount into a variable value, while you want it to go into the discount field of your form. To get this, you'll need to look up that element and set its value, like this:

document.getElementById("discount").value = value;

Complete HTML

<select name="quantity" id="quantity">
      <option value="1">1</option>
      <option value="2">2</option>
      <option value="3">3</option>
</select>

<input type="hidden" name="amount" value="10.00"/>
<input type="hidden" name="discount" id="discount" /> 

Complete JavaScript

function updateDiscount()
{
    var select = document.getElementById("quantity");
    var quantity = select.options[select.selectedIndex].value;
    if (quantity==3)
    {
       value="5.00";
    }
    else if (quantity==2)
    {
       value="2.00";
    }
    else
    {
       value="0.00";
    }
    document.getElementById("discount").value = value;
}
document.getElementById("quantity").onchange = updateDiscount;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...