我有一些社交媒体网站链接,我想通过弹出框解析。以下是其中一个链接的示例:
<li>
<a class="sprite_reddit" href="http://www.reddit.com/submit" onclick="window.open('http://www.reddit.com/submit?v=5&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'reddit','toolbar=no,width=840,height=750'); return false;"></a>
</li>
我不希望在html中包含window.open,而是希望此链接通过以下javascript进行解析,该javascript将弹出框置于屏幕中心。
function MyPopUpWin(url, width, height) {
var leftPosition, topPosition;
//Allow for borders.
leftPosition = (window.screen.width / 2) - ((width / 2) + 10);
//Allow for title and status bars.
topPosition = (window.screen.height / 2) - ((height / 2) + 50);
//Open the window.
window.open(url, "Window2", "status=no,height=" + height + ",width=" + width + ",resizable=yes,left=" + leftPosition + ",top=" + topPosition + ",screenX=" + leftPosition + ",screenY=" + topPosition + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
}
为了达到这个目的,我需要改变什么?或者这种链接是不可能的?
谢谢你。
答案 0 :(得分:0)
每个主要浏览器版本都支持open功能,但并非每个浏览器都支持您设置的所有参数。有些像screenX和Y不再支持我猜。 查看此链接以获取更多信息: