我有两个文本框,我需要将一个文本框的值填充到另一个文本框,并且在文本框中输入的值应该只是数字。
/* 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;
}