使用cordova 4.1.1和离子版1.1.1在Android 5.0及更高版本中选择元素不起作用

时间:2016-09-08 04:23:43

标签: jquery angularjs cordova ionic-framework

在ionic.bundle.js中注释下面的代码后,select元素正在工作,但是ion-nav-view标签内的视图消失了。

等待帮助....

下面是ionic.bundle.js的代码

    function tapMouseDown(e) { 
  if (e.isIonicTap || tapIgnoreEvent(e)) return null;
  if (tapEnabledTouchEvents) {
    void 0;
    e.stopPropagation();
    alert(e);
    if ((!ionic.tap.isTextInput(e.target) || tapLastTouchTarget !== e.target) && !(/^(select|option)$/i).test(e.target.tagName)) {   
      e.preventDefault();
    }
    return false;
  }
  tapPointerMoved = false;
  tapPointerStart = ionic.tap.pointerCoord(e);
  tapEventListener('mousemove');
  ionic.activator.start(e);
}

0 个答案:

没有答案