var str = ""; //设为全局变量 $("select[name=countynum]").change(function(){ if($("select[name=countynum]").val()=='330386'){ $("#responsecode").val("LS_"); } str = $("#responsecode").val(); //responsecode 责任书编号id }); $("#responsecode").keyup(function(){ if ($("#responsecode").val().indexOf(str) != 0){ $("#responsecode").val(str); } })