87,996
社区成员




$(function(){
var temp="";
$("#sort").change(function(){
var temp = $(this).val();
});
console.log("我的值"+temp);
});
var temp = '';
$(function(){
$("#sort").change(function(){
temp = $(this).val();
});
});
function anotherFunc(){
console.log(temp);
}
$(function(){
var temp="";
$("#sort").change(function(){
temp = $(this).val();
aa();
});
function aa() {
console.log("我的值"+temp);
}
});