質問

The problem: I'm duplicating div's using a button. Within the div's are parts of a form:

<form method="post" action="order-opstellen.php">
  <div id="duplicate">
    <input type="hidden" id="counter" value="0">
  </div>
  <input type="button" onclick="duplicate()" value="Add">
  <button type="submit">Send</button>
</form>

I'm using this script:

<script type="text/javascript">
var i = 0;
var original = document.getElementById('duplicate');
function duplicate() {
  var clone = original.cloneNode(true);
  clone.id = "duplicate" + ++i;
  clone.style.clear = "both";
  original.parentNode.appendChild(clone);
  var tempId = document.getElementById("duplicate" + i);
  tempId.childNodes[0].value=i;
}
</script>

As you can see, I'm trying to change the value of each input. Adding it with 1 every time I duplicate the div. Obviously it is not working. How do I do this?

Update:

So I've got this first part working. Now I need to go deeper.

<form method="post" action="order-opstellen.php">
  <div id="duplicate">
    <input type="hidden" id="counter" value="0">
    <div class="form-group dispWidth fl">
      <label>Productnaam</label>
        <select class="form-control dispWidth" name="productnaam"> <?php
         $sql_products  =   "SELECT * FROM product ORDER BY naam";
         $results   =   $conn->query($sql_products)->fetchAll(PDO::FETCH_OBJ);
         foreach    ($results   as  $row)   {
         ?>
          <option value="<?=    $row->productnr ?>"><?= $row->naam  ?></option>
          <?php }
          ?>
        </select>
    </div>
<div class="form-group dispWidth fl ml">
  <label>Aantal</label>
  <input type="text" name=amountCount class="form-control dispWidth" placeholder="Hoeveelheid">
</div>
</form>

What I want is every time I duplicate the div, the select-name has to be unique. Also the name of the last input has to be unique (amountCount). Probably by con-catting the i variable behind them both (productnaam1, productnaam2, amountCount1.). How?!

役に立ちましたか?

解決

childNodes[0] is the text node that contains the newline and indentation.

Try children[0] instead.

Also, tempId refers to the exact same thing as clone, so just use clone.children[0].value = i;

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top