javascript - how to getElementByID() when the id is a php variable? - Stack Overflow

For example: <?phpforeach($something as $anotherthing){?><span id="<?php echo

For example:

<?php  foreach($something as $anotherthing){  ?>
    <span id="<?php echo $product_id; ?>"><?php echo $price; ?></span>

    <?php if($option == 'select') { ?>
    <select name="joe" id="<?php echo $select_id; ?>" > ......

I have no idea how to get the id's into javascript.

For example:

<?php  foreach($something as $anotherthing){  ?>
    <span id="<?php echo $product_id; ?>"><?php echo $price; ?></span>

    <?php if($option == 'select') { ?>
    <select name="joe" id="<?php echo $select_id; ?>" > ......

I have no idea how to get the id's into javascript.

Share Improve this question asked Oct 11, 2012 at 10:16 tora0515tora0515 2,54712 gold badges34 silver badges41 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 7

HTML is text. JavaScript is text. So - the same way.

getElementById('<?php echo $product_id; ?>');

The same way as in HTML :

document.getElementByID('<?php echo $id?>');

Suggestion, either use $_SESSION or put the variable into a hidden input field that always has the same name, then you can get the value from there and use it as the ID :)

Given you use a syntax similar to product-N or product[N] if you only have a want all products on the page:

document.querySelectorAll('[id^=product]');

if you want just one of those you can use only the first match add [0] just before the ;

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743703244a4492931.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信