中關于用createElement?
jQuery.fn.addOption = function(text,value)<br>
{<br>
jQuery(this).get(0).options.add(new Option(text,value));<br>
}<br>這是個腳本,為指定select追加option<br>function openendtime(){<br>
//var beginvalue= $(timeBegin).val();<br>
$(timeEnd).empty();//添加前清空select選項<br>
//alert(beginvalue);<br>
for(i=0;i<這里是mysql返回的數據集長度;i++){<br>
$(timeEnd).addOption(顯示值,option的value值);//調用<br>
}<br><br>
}<br><br>修改下你應該就可以用!!!