jQuery 移动设备在我的屏幕周围创建了一个蓝色边框,如何删除?

jQuery mobile creates a blue border around my screen, how to remove?

我在我的网站上添加了 jQuery 移动设备 以添加滑动,使我的网站对移动设备更友好。 link: my site

当你点击我页面上的任意位置时,chrome(pc) 中的蓝色边框会出现在页面周围,在我的 android 手机上 chrome 边框是黄色的。我只是想摆脱它,因为它会使页面变得丑陋。

快速解决方法是通过 css

删除此轮廓

.ui-page-active { outline: none; }

完成!