<input style="background-color: black;" bind:tap="qwer" bindchange="asdf"/>
<input style="background-color: blue;" bind:tap="qwe" bindchange="asd"/>
qwer(){console.log('t1');},
asdf(){console.log('c1');},
qwe(){console.log('t2');},
asd(){console.log('c2');}
当我点击第一个输入框后,紧接着点击第二个输入框时
真机测试:
微信开发者工具:
发现电脑点击事件会在change事件闭环之后执行,而真机测试却是先执行点击事件再闭环change事件
工具什么版本