简体   繁体   中英

Get element by name which has $key

PHP

<input type="number"  min="0" max="500" value="" name="qty<?php echo $key ?>" id="<?php echo $key ?>" onChange="findTotal()" />

JS

function findTotal() {
    var arr = document.getElementsByName('qty');
    ....
}

How do I get element by name which has $key inside?

Let's say $key is 'x'. You could then use getElementbyID('x'), because echoing $key is the same as putting id="x".

Oh, I see. you have series of rows with the different qty keys.

then try this.

in PHP:

<input type="number" min="0" max="500" value="" name="qty<?php echo $key ?>" id="<?php echo $key ?>" onChange="findTotal('qty<?php echo $key?>')" />

and in JS:

 function findTotal(key) {
    var arr = document.getElementsByName(key);
    ....
}

You can assign this as your function params then you can call its name or id from your function when onchange event executed !!

//assign this
<input type="number"  min="0" max="500" value="" name="qty<?php echo $key ?>" id="<?php echo $key ?>" onChange="findTotal(this)" />

function findTotal(current) {
  var arr = current.name; // current.id for id
  alert(arr);    
}

Since your name is dynamic, you can not get the element by the name unless your JS has some way of knowing that dynamic name (such as if you have a list of them and are running them in a loop).

In your case, you may want to try using data attributes as outlined here: Mozzila - Using data attributes

You may also be able to take advantage of this as outlined in this answer: Javascript Get Element Value - Answer By yorick

Let me know if this helps. I may be able to refine this answer if you can give some more information about your specific implementation.

Cheers!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM