我想要一个在移动设备的新窗口中打开链接的功能。 我在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>
答案 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");