js获取select选中的内容

  记得以前做过一个,根据不同的下拉选项,搜索不同的内容,需要用js获取select选中的内容,特把里面主要内容记下,留着以后需要用。

  需要引用jquery-1.4.1.js

<body>

<script type="text/javascript">
    function getvalue() {
        var sel = document.getElementById("fuwu");
        var selvalue = sel.options[sel.options.selectedIndex].value //value
        var x = document.getElementsByName("proName")[0].value;
        if (selvalue == 1) {
            window.document.location.href = "searchlist.aspx?proName=" + x + "";
        }
        if (selvalue == 2) {
            window.document.location.href = "searchnews.aspx?proName=" + x + "";
        }
    }
 </script>

<div><p class="f_l">

<input type="text" id="proName" name="proName" value="请输入您想搜索的内容"  class="f_l" onfocus="if(this.value==this.defaultValue)this.value=‘‘" onblur="if(this.value==‘‘)this.value=this.defaultValue" />
<select id="fuwu" name="fuwu" >

<option value="1">产品</option>

<option value="2">新闻</option>

</select></p>
<input type="submit" value="搜 索" onclick="return getvalue()" class="btn" /></div>

</body>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。