首页 > 代码库 > js this 做参数

js this 做参数

<input type=‘button‘ onchange=‘chang(this)‘/>

<script type="text/javascript">
function change(Nchsele) {
var txt=$(Nchsele).find(‘option:selected‘).text();
$(‘.chanVal‘).val(txt);

}
</script>

js this 做参数