问问题
300 次
3 回答
3
$('#consoleoutput').find('option:last').prop('selected', true );
Here's a fiddle
于 2012-04-25T15:14:19.870 回答
2
You can select the last item in the list like so:
var sel = document.getElementById('consoleoutput');
sel.selectedIndex = sel.options.length - 1;
于 2012-04-25T15:14:28.990 回答
1
1:为您的选择元素编写一个更改监听器
$('#consoleoutput').change(function(){
// scroll
})
2:添加此项以选择您添加的选项:
$("#consoleoutput").val(text);
于 2012-04-25T15:17:23.583 回答