我想调用一个返回列表并在现有列表中放置其返回值的函数。是否可以(不使用extend
)?
示例:
def foo():
return [1,2,3]
def bar():
return [-1, 0, foo()]
我希望bar
返回[-1,0,1,2,3]
。
由于
答案 0 :(得分:6)
$(document).ready(function() {
$('#idOfTheFirstDropDown').bind('change', function() {
var options = $(this).children('option');
var item = $('div.c-select').children().hide(); // hide all the elements
var value = Math.floor(Math.random() * options.length );
//console.log(value);
if (value.length) { // if selected
item.show(); // show the next dropdown
}
}).trigger('change');
});