9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
function initbodys(){
|
|
$(form('custid')).change(function(){
|
|
var val = this.value,txt='';
|
|
if(val!=''){
|
|
txt = this.options[this.selectedIndex].text;
|
|
}
|
|
form('custname').value=txt;
|
|
});
|
|
} |