解决方案 »

  1.   

    你想促发什么事件 html里面的事件jquery都有 你可以去看下jquery的手册找找
      

  2.   

    没有,
    没有在dom构造过程中触发的事件。
      

  3.   

    你可以将选中放在JS中设置,然后再选中之后再做其他处理,如下
    <!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=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script><script>
    $(function(){
    set();
    })
    function set()
    {
    $('select[name="list"]').val(2);//选中test2的选项

    /*
    选中之后时,你可以做其他处理
    */


    }
    </script>
    </head>
    <body>
    <select name="list">
     <option value="1">test1</option>
     <option value="2" >test2</option>
     <option value="3">test3</option>
    </select></body>
    </html>
      

  4.   

    确实,如3楼所说,dom创建时,是没有这种函数的;我就是对jquery函数库不熟,所以才来咨询的。
    另外,4楼所说的方法有一定参考意义