$('#area').change(function(){
if(this.options[0].value==-1){
this.options[0]=null;
$('#show').val() = this.value;
}
});
/* document.getElementById('area').onchange=function (){
if(this.options[0].value==-1)this.options[0]=null;
document.getElementById('show').value=this.value
};*/
注釋的那個是網上找的 我想給他改成上面的樣式 哪裡改錯了
$('#area').change(function(){
$('#show').val($(this).find("option:selected").text()) ;
});