js获得选中的下拉列表的值跟去掉空格

//去空格

function trim(str)
{
 str =str.replace(/(^\s*)|(\s*$)/g, ""); 
 return str;
}

 

 

//获取select选中的值

function check_form(form)
{
 
     alert(document.getElementsByName("unit.unitNo")[0].value);
 
}

 

你可能感兴趣的:(JavaScript)