admin管理员组文章数量:1343365
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 badges4 Answers
Reset to default 7HTML 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 ;
本文标签: javascripthow to getElementByID() when the id is a php variableStack Overflow
版权声明:本文标题:javascript - how to getElementByID() when the id is a php variable? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743703243a2524680.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论