I'm found another problem:
demos/forms/index.html
html
<input type="file">
It isn't working, And my temporary solution(In the function handleEvent ):
...case 'click':// Add the two code belowvar target = e.target;if (/file/i.test(e.target.type)) {return;}if ( !e._constructed ) {//...}
I'm found another problem: demos/forms/index.html html
<input type="file">
It isn't working, And my temporary solution(In the function
handleEvent
):...
case 'click':
// Add the two code below
var target = e.target;
if (/file/i.test(e.target.type)) {return;}
if ( !e._constructed ) {
//...
}
If not, how do it work? Thank you so much.