我有一个嵌入在 PHP 脚本“echo”中的 JavaScript。当我使用document.getElementById('list_subjects').selectedIndex
警告框时,它会给出结果,但是当我在 php 数组变量中使用它时。它说未定义的索引。我确实(int)$index
将它转换为整数,但它的输出始终为零。这里有什么问题?谢谢你!
<?php
echo "<script> function subject_name(){" . ($index = "(document.getElementById('list_subjects').selectedIndex)") . ";document.getElementById('subj_name').innerHTML = '" . ($list_options_name[(int)$index]) . "';} </script>";
?>