First of all you are not using Material UI. The input
you are using is a html tag. If you want to use Material UI use TextField component with type="number"
This
$(this).val();// if jquery I can get the value here.
will not work in React. Try something like below
handleMasterVolume(e) {
const value = e.target.value;
console.log(value);
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…