其他分享
首页 > 其他分享> > html select标签 点击选中事件

html select标签 点击选中事件

作者:互联网

html   select标签 点击选中事件

原文 https://blog.csdn.net/qq_37591637/article/details/88835811

 

js事件

οnchange="gradeChange(this.options[this.options.selectedIndex].text)"

获取文本的值
this.options[this.options.selectedIndex].text  是文本的值

获取value的值
this.options[this.options.selectedIndex].value 是value值

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>田氏</title> 
</head>
<body>
 
<select id="slt" onchange="gradeChange(this.options[this.options.selectedIndex].text)" >
  <option value="0">蔬菜</option>
  <option value="1">水果</option>
  <option value="2">土地</option>
  <option value="3">食品安全</option>
      <option value="4">认养体验</option>
  <option value="5">城乡合作</option>
  <option value="6">供应信息</option>
  <option value="7">农业快讯</option>
</select>
  
</body> <script> function gradeChange(tx){ alert(tx); this.options[this.options.selectedIndex].text; } </script> </html>

 

标签:tx,标签,value,html,text,selectedIndex,options,select
来源: https://www.cnblogs.com/zyadmin/p/13684146.html