input获得select的内容并显示在输入框中(可以选中单个值)

html: 

 
 


js:

$('#expertId option').on('click', function() {
                document.getElementById('expertIdt').value=  
                document.getElementById('expertId').options[document.getElementById('expertId').selectedIndex].value;

})


效果:

input获得select的内容并显示在输入框中(可以选中单个值)_第1张图片


你可能感兴趣的:(input获得select的内容并显示在输入框中(可以选中单个值))