如何取HTML中的select中的值

如何取HTML中的select中的值,第1张

取HTML中的select中的值,首先需要的就是获取到你这个文本的元素,jquery的话一般是都过$('#元素id'),然后在通过value这个属性来获取内容就行了,具体我写代码来提现:

<html>

<head>

</head>

<script>

$(function(){

alert( $('#div1').value) //d出获取到的网页内容

})

</script>

<body>

<select id='div1'>我是内容</select>

</body>

</html>

这个无法用 HTML 去读取,需要用到 JavaScript。代码如下:

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <title>Document</title>

</head>

<body>

   <select id="select1">

       <option value="0">== 请选择 ==</option>

       <option value="1">苹果</option>

       <option value="2">香蕉</option>

       <option value="3">桃子</option>

   </select>

   <p id="result"></p>

   <script>

       document.getElementById('select1').onchange = function() {

           var getText = function(elm) {

               if (typeof elm.innerText == 'string') {

                   return elm.innerText

               }

               return elm.textContent

           }

           var value = this.value,

               index = this.selectedIndex,

               text = getText(this.options[index])

           document.getElementById('result').innerHTML = '【' + value + '】 ' + text

       }

   </script>

</body>

</html>

html中清空select标签中的值方法如下:

准备材料:html+jquery、代码编辑器

1、新建一个html文件,命名为test.html,使用jquery清除select中的所有option。

2、在test.html文件内,使用select和option标签创建一个下拉选择框,代码如下:

3、在test.html文件内,设置select的id为myselect,用于下面通过该id获得select对象。

4、在test.html文件内,使用button标签创建一个按钮,按钮名称为“清除所有option”。

5、在test.html文件内,给button按钮绑定onclick点击事件,当按钮被点击时,执行deloption()函数。

6、在js标签中,创建deloption()函数,在函数内,通过id获得select对象,使用find()方法获得所有的option对象,使用remove()方法来实现删除所有option。

7、在浏览器打开test.html文件,

8、点击按钮,查看实现的效果。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5895507.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-07
下一篇 2023-03-07

发表评论

登录后才能评论

评论列表(0条)

保存