<input id="a1" />
<input id="a2" readonly="" />
<input id="a3" readonly="" />
<script>
document.getElementById('a1').addEventListener('input', function() {
this.value = this.value.replace(/\D/,'');
document.getElementById('a2').value = this.value * 10;
document.getElementById('a3').value = this.value * 100;
});
</script>
И что тут не совсем?
|