我的目标是在新窗口中启动IE8中的某个页面。我正在使用_target = blank,但是启动结果窗口的六个像300X400。所以,我的问题是:如果我使用_target = blanck,我能管理浏览器结果窗口的大小吗?
更新:如果可能,我需要没有js的解决方案
答案 0 :(得分:2)
尝试这样的事情:
<script type="text/javascript">
function showPopup(url) {
newwindow=window.open(url,'name','height=190,width=520,top=200,left=300,resizable');
if (window.focus) {newwindow.focus()}
}
</script>
HTML:
<a href='...' onClick='showPopup(this.href);return(false);'>Info</a>
答案 1 :(得分:1)
没有JavaScript,这是不可能的。所以,这是代码!
<a onclick="window.open('http://www.google.com','nyWindow','width=300,Height=400');">Open Window</a>
希望它有助于你...
答案 2 :(得分:0)
试试这个
<a href="#" onclick="window.open('google.com','height=100,width=100');return false;">test</a>
答案 3 :(得分:0)
以下是如何使用JQuery完成的:
<script type="text/javascript">
var windowSizeArray = [ "width=200,height=200",
"width=300,height=400,scrollbars=yes" ];
$(document).ready(function(){
$('.newWindow').click(function (event){
var url = $(this).attr("href");
var windowName = "popUp";//$(this).attr("name");
var windowSize = windowSizeArray[$(this).attr("rel")];
window.open(url, windowName, windowSize);
event.preventDefault();
});
});
</script>
<a href="http://www.Zakharko.com/" rel="0" class="newWindow" >open me</a>