Firefox中的此代码正在运行。在IE中,警报为空。

<select id="ronny"  name="ronny" onchange="AjaxPost();alert(document.getElementById('ronny').value);">
   <option id="selected_ronny">All</option>
     <?php
      foreach($d_ronny as $ronny)
        {
          if ($ronny == $_POST['ronny_select'])
            {
              echo "<option selected id='selected_ronny'>$ronny</option>";
            }
          else
            {
              echo "<option>$ronny</option>";
            }
        }
     ?>
</select>


选项是fox示例:
All
abc
123
xyz
当我选择xyz时,警报显示为xyz。在IE中,警报为空。

谢谢!

最佳答案

对于onchange属性,您必须这样编码:

onchange="AjaxPost();alert(this.options[selectedIndex].value);"


如果要使用ID,请将thi替换为document.getElementById('ronny')

onchange="AjaxPost();alert(document.getElementById('ronny').options[selectedIndex].value);"

09-18 01:38