我有一个网页,其中包含一个显示图片的PHP文件的网址。我想在新窗口中打开此图片没有空白页。
现在使用下面的代码,当我点击URL,空白页面和新窗口打开时(我必须每次都关闭)。我不想要这个空白页面,只有带图片的窗口
window.open('image.PNG', 'image', 'toolbar,menubar,scrollbars,resizable,height=800,width=400,left=600,top=400');
怎么做?
//编辑 如果我有
,则防止默认不起作用<a href="file.php">Link</a> //URL to PHP with script above
答案 0 :(得分:0)
如果您将其粘贴到控制台中:
open('image.png');
新标签打开并显示您想要的图片,而不是尝试:
<a href = 'image.png' id = 'image'>
和
document.getElementById('image').onclick = funciton(e){
e.preventDefault();
open('image.PNG', 'image', 'toolbar,menubar,scrollbars,resizable,height=800,width=400,left=600,top=400');
};
如果这不起作用,请将其粘贴到您的控制台中:
open('file.php');
然后会打开一个新标签,其中包含您想要的图片,而不是尝试:
<a href = 'file.php' id = 'file'>
和
document.getElementById('file').onclick = funciton(e){
e.preventDefault();
open('file.php', 'image', 'toolbar,menubar,scrollbars,resizable,height=800,width=400,left=600,top=400');
};
如果 无效,请在下方发表评论。