//js 情况input 为file 里面的内容


//js 情况input 为file 里面的内容
var obj=document.getElementById('imgs1');

obj.outerHTML=obj.outerHTML;
$('#imgs1').get(0).files[0]


@touchmove demochind

touchmove事件:当手指在屏幕上滑动的时候连续地触发。


@touchstart chooseCity

touchstart事件:当手指触摸屏幕时候触发,即使已经有一个手指放在屏幕上也会触发。

touchend事件:当手指从屏幕上离开的时候触发。

原文地址:https://www.cnblogs.com/shaozhu520/p/10735856.html