主机百科
测评与优惠

js/jquery获取html select当前选中值

js获取html select当前选中值代码:

1
  &lt;!doctype html&gt;  &lt;html&gt;  &lt;head&gt;  &nbsp;&nbsp;&nbsp; &lt;meta charset=&quot;UTF8&quot;&gt;  &nbsp;&nbsp;&nbsp; &lt;title&gt;js获取html select当前选中值www.02405.com&lt;/title&gt;  &lt;/head&gt;  &lt;body&gt;  &lt;select id=&quot;user&quot; onchange=&quot;showSelect()&quot;&gt;  &nbsp;&nbsp;&nbsp; &lt;option value=&quot;zhangsan&quot;&gt;张三&lt;/option&gt;  &nbsp;&nbsp;&nbsp; &lt;option value=&quot;lisi&quot;&gt;李四&lt;/option&gt;  &nbsp;&nbsp;&nbsp; &lt;option value=&quot;wangwu&quot;&gt;王五&lt;/option&gt;  &lt;/select&gt;  &lt;script type=&quot;text/javascript&quot;&gt;  &nbsp;&nbsp;&nbsp; function showSelect(){  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var obj = document.getElementById(&quot;user&quot;);  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var index = obj.selectedIndex;//当前select选中项的索引          console.log(obj.options[index].value);//输出当前select选中项的value          console.log(obj.options[index].text);//输出当前select选中项的text      }  </script>  </body>  </html>

jquery获取html select当前选中值代码:

1
  &lt;!doctype html&gt;  &lt;html&gt;  &lt;head&gt;  &nbsp;&nbsp;&nbsp; &lt;meta charset=&quot;UTF8&quot;&gt;  &nbsp;&nbsp;&nbsp; &lt;title&gt;js获取html select当前选中值www.02405.com&lt;/title&gt;  &nbsp;&nbsp;&nbsp; &lt;script src=&quot;jquery.min.js&quot;&gt;&lt;/script&gt;  &lt;/head&gt;  &lt;body&gt;  &lt;select id=&quot;user&quot; onchange=&quot;showSelect()&quot;&gt;  &nbsp;&nbsp;&nbsp; &lt;option value=&quot;zhangsan&quot;&gt;张三&lt;/option&gt;  &nbsp;&nbsp;&nbsp; &lt;option value=&quot;lisi&quot;&gt;李四&lt;/option&gt;  &nbsp;&nbsp;&nbsp; &lt;option value=&quot;wangwu&quot;&gt;王五&lt;/option&gt;  &lt;/select&gt;  &lt;script type=&quot;text/javascript&quot;&gt;  &nbsp;&nbsp;&nbsp; function showSelect(){  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; console.log($(&quot;#user").find("option:selected").val());//输出当前select选中项的value          console.log($("#user").find("option:selected").text());//输出当前select选中项的text      }  </script>  </body>  </html>

赞(0)
未经允许不得转载:主机阁 » js/jquery获取html select当前选中值

登录

找回密码

注册