select 对当前选项显示文本的获取 m.options[m.selectedIndex].text | selectz
<html>
<head>
<title>select</title>
</head>
<body>
<select id="mySelect">
<option value="volvo">Volvo111</option>
<option value="saab">Saab111</option>
<option value="mercedes">Mercedes111</option>
<option value="audi">Audi111</option>
</select>
<script>
function getSelect () {
const m = document.getElementById('mySelect')
console.info('m', m)
console.info('m.value', m.value)
console.info('m.text', m.text)
console.info('m.name', m.name)
console.info('m.innerText', m.innerText)
console.info('m.selectedIndex ', m.selectedIndex )
console.info('m.selectedIndex ', m.selectedIndex )
console.info('m.options[m.selectedIndex].text', m.options[m.selectedIndex].text)
}
</script>
</body>
</html>
---------------------------------------------
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)