你可以用
var p=document.getElementById('m_select');
coll = p.options(p.selectedIndex).value;
alert(coll);

解决方案 »

  1.   

    变量有冲突?例如m_select可能还是一个函数名?
      

  2.   

    1.在 document.forms[0].m_select.options加载前调用了javascript
    2.存在相同的变量名
    3.元素不存在建议使用alert(document.forms[0].m_select),看是否有[object]
      

  3.   

    ^_^ 我已经解决了,用了一个iframe,把输出跳转到iframe里就好了,
      

  4.   

    是啊,问题出在content_type上,所以会出错