Lucky to find a solution on the Internet
Just add the following snippet of code to the code.
function Allowformsiniscroll () {[].slice.call (' Document.queryselectorall (' Input, select, Button ')). ForEach ( function(EL) {El.addeventlistener ((infunction(e) {e.stoppropagation ();})} )} Document.addeventlistener (false);
The problem is that the iscroll needs to listen to the user's touch operation so that it can respond sensitively, so it masks the rest of the default events.
The above code principle is : After the page is loaded to find all the ' input, select, button ' element and then bind the ' touchstart ' or ' MouseDown ' event, when the event is executed to stop the propagation of the event, this line.
Original Author Address: http://www.cnblogs.com/duanhuajian/archive/2012/11/09/2763159.html
The mobile side uses isscroll.js input to not get the focus (that is, the point is not responding!) )