js select选中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js select选中相关的知识,希望对你有一定的参考价值。
js信息:
$(".wrapl").change(function () {
var s = this.options[this.selectedIndex].value;
$(this).prev().html(s);
});
html信息:
<table>
<tr>
<td>
<label style="display: none">A</label>
<select class="wrapl">
<option>A</option>
<option>B</option>
<option>C</option>
</select>
</td>
<td>
<label style="display: none">A</label>
<select class="wrapl">
<option>A</option>
<option>B</option>
<option>C</option>
</select>
</td>
</table>
以上是关于js select选中的主要内容,如果未能解决你的问题,请参考以下文章