When the properties of an HTML element are changed, they can be captured through onpropertychange. For example, when the value property of the <input name="text1" /> object is modified by the page script, onchange cannot be captured, but onpropertychange can be captured.
Specifically, it is understood that onpropertychange can capture changes in property values in time, and onchange can only activate the event when the property value changes with the mouse!
But onpropertychange only supports IE. How to solve the problem under FireFox? The oninput of firefox has the same effect as onproperchange of IE.
Specifically, it is understood that onpropertychange can capture changes in property values in time, and onchange can only activate the event when the property value changes with the mouse!
But onpropertychange only supports IE. How to solve the problem under FireFox? The oninput of firefox has the same effect as onproperchange of IE.