现在在用delphi写一个仿ie浏览器的程序,要实现选中select的某一项,
在ie7核心中可以用:PElement.selectedIndex := 1 
在ie6核心中可以用:PElement.SetAttribute('selectedIndex', '1')请问各位老大在ie8中该怎么写呢?

解决方案 »

  1.   


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>test</title>
    </head>
    <body>
    <select id="sel">
    <option>aaaa</option>
    <option>bbbb</option>
    <option>cccc</option>
    </select><button onclick="fun()">select</button><script type="text/javascript">
    function fun(){
    document.getElementById("sel").selectedIndex = 1;
    }
    </script>
    </body>
    </html>
      

  2.   

    不是selectindex = 1,这个方法只在ie7下管作用,在ie8下会报错。