有人可以为我提供一些HTML / JavaScript,让我可以执行以下操作:
当我点击链接时,它会:
答案 0 :(得分:0)
第一个问题尝试这样
<!DOCTYPE html>
<html>
<head>
<script>
function openWin()
{
myWindow=window.open('','','width=640,height=480');
myWindow.document.write("<p>This is 'myWindow'</p>");
myWindow.focus();
}
</script>
</head>
<body>
<a href="#" onclick="openWin()">click</a>
</body>
</html>
第二个问题请参见此帖子Open new window on center of screen with this javascript?
对于上一个问题,您可以在http://www.longtailvideo.com/blog/26517/using-the-browsers-new-html5-fullscreen-capabilities/
看到解决方案