//下拉框选择 $("select").change(function () { var is_show = $("option:selected").val(); console.log(is_show); var listurl = \'/Index/Goods/listgoods\'; if (is_show==\'\'){ console.log(\'空\') window.location.href=listurl; } else{ console.log(\'非空\'); var listurl = listurl+\'/is_show/\'+is_show; window.location.href=listurl; } })