私はこれを持っています:
<?php $i=0;?>
<?php foreach($x as $y): ?>
<input type="hidden" id="theid<?php echo $i;?>" value="<?php echo $someVariable;?>"/>
<?php $i = $i + 1; ?>
<?php endforeach; ?>
次のように、各「theid」の値を取得する必要があります。
<script type="text/javascript">
function somefunction(element, optionTitle) {
var num = document.getElementById('theid').value;
...
</script>
「theid」に $i が追加されているという事実を考慮して、どうすればそれを行うことができますか? ありがとう。