js limits the input box to only enter two decimal places

 Realized through onimput events and regular

<input
    type="number"
    oninput="value=value.toString().match(/^\d+(?:\.\d{0,2})?/)">

 

Guess you like

Origin blog.csdn.net/joyvonlee/article/details/106998839