ng-click 在移动屏幕上不起作用

ng-click is not working in mobile screen

我的 Web 版应用程序中有一个弹出窗口,它工作正常。

<a href="" ng-click="backToCareTemp()"> <i class="icon-arrow-left"></i> <span>Back</span></a>

当我降低手机屏幕的屏幕分辨率时,弹出的后退按钮不起作用。显示了文字但无法点击??

尝试使用ngTouch。根据 Angular 文档。

A more powerful replacement for the default ngClick designed to be used on touchscreen devices. Most mobile browsers wait about 300ms after a tap-and-release before sending the click event. This version handles them immediately, and then prevents the following click event from propagating.

Requires the ngTouch module to be installed.

我使用 CSS 并修复了它。

抱歉不是 Angular 问题。