标签: javascript jquery mobile popup jquery-mobile-popup
移动浏览器会阻止弹出窗口,因为它不是直接用户的操作而被调用。如何解决?
我尝试做
var importantStuff = window.open('', '_blank');
然后发送需要打开的页面的URL
importantStuff.location.href = 'http://shrib.com';
但这不起作用,因为页面(显然)已经打开。
有什么解决方法吗?
谢谢!