Open new window on center of screen with this javascript?(使用此 javascript 在屏幕中心打开新窗口?)
问题描述
我的 javascript 经验非常有限.我想在屏幕中央打开新窗口.
My experience with javascript is extraordinarily limited. I would like to have the new window open up in the center of the screen.
<script type="text/javascript">
function fbs_click() {
var twtTitle = document.title;
var twtUrl = location.href;
var maxLength = 140 - (twtUrl.length + 1);
if (twtTitle.length > maxLength) {
twtTitle = twtTitle.substr(0, (maxLength - 3)) + '...';
}
var twtLink = 'http://twitter.com/home?status=' + encodeURIComponent(twtTitle + ' ' + twtUrl);
window.open(twtLink,'','width=300,height=300'); } </script>
如果有人可以请更新我的代码以完成一个居中的弹出窗口,那将是惊人的!
If somebody can please update my code to accomplish a popup window which is centered that would be amazing!
推荐答案
怎么样(改编自这里):
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");
}
通过将代码中的 window.open(twtLink,'','width=300,height=300');
替换为 MyPopUpWin(twtLink, 300, 300); 来调用它
Call it by replacing window.open(twtLink,'','width=300,height=300');
in your code with MyPopUpWin(twtLink, 300, 300);
这篇关于使用此 javascript 在屏幕中心打开新窗口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用此 javascript 在屏幕中心打开新窗口?


基础教程推荐
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01