如何在Internet Explorer弹出窗口中打开小书签

时间:2018-10-26 21:19:42

标签: javascript internet-explorer popup popupwindow bookmarklet

我已经为Internet Explorer开发了Bookmarklet。当用户在主浏览器页面上加载它时,它可以正常工作。 问题是,它在应用程序的弹出窗口中不起作用。

我的大多数用户都在弹出窗口中打开主页内的链接,但是小书签是从“收藏夹”窗口中触发的。

小书签链接在弹出窗口中不起作用。

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

尝试使用下面的代码可能有助于解决您的问题。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
<title>WhatsApp</title>
</head>
<body>
<script type="text/javascript">
javascript:(function(){open('https://Microsoft.com/','myWindow','toolbar=yes, menubar=yes, resizable=yes, width=650,height=900,top=0,left=1270');})()
</script>
</body>
</html>