jQuery函数在移动设备的新窗口中打开链接

时间:2015-04-15 05:12:22

标签: jquery html mobile

我想要一个在移动设备的新窗口中打开链接的功能。 我在jQuery中有这个脚本,只适用于Desktop。

这个脚本如何用于移动设备?

<a href="http://google.com" class="mha">google</a>

<script> 
 $('.mha').click(function (event) {
   event.preventDefault();
   window.open($(this).attr("href"), "popupWindow", "width=2000,height=2000,scrollbars=yes,fullscreen=yes");
 });
</script> 

http://jsfiddle.net/a7qJt/

2 个答案:

答案 0 :(得分:0)

setTimeout函数中添加您的活动并尝试。

setTimeout(function() { 
       window.open($(this).attr("href"), "popupWindow", "width=2000,height=2000,scrollbars=yes,fullscreen=yes");
}, 1000);

答案 1 :(得分:0)

我认为你必须写这么多:

window.open($(this).attr("href"), "_blank");