2 つのテキスト ボックスがあります。1 つのテキスト ボックスの値を別のテキスト ボックスに入力する必要があり、テキスト ボックスに入力された値は数値のみである必要があります。
/* for numeric value in one textbox and populate in another*/
function onType(evt){
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)){
return false;
}
else{
document.getElementById("marketValuationId").value=document.getElementById("valuationId").value;
return true;
}