1.onchang与onpropertychange的区别
解释:onpropertychange能够捕获每次改变,而onchange需要执行某个事件才可以捕获。
理解为:onpropertychange能及时捕获属性值的变化,而onchange在属性值改变时只有通过鼠标执行某些操作才能激活该事件!
例如:
<input type="text" name="txtface" onpropertychange="document.getElementById('imgs').src=this.value;">
<img id="imgs" src="1.gif" >