如何在html文件中禁用瀏覽器中的地址欄和後退按鈕?在html文件中禁用瀏覽器中的地址欄和後退按鈕
是這樣的:
以下是演示:http://jsfiddle.net/n5pKP/5/
JS:
$('.popup').click(function() {
var curr_browser = navigator.appName;
if (curr_browser == "Microsoft Internet Explorer") {
window.opener = self;
}
window.open('http://www.google.com/', 'null', 'width=900,height=750,toolbar=no,scrollbars=no,location=no,resizable =no');
window.moveTo(0, 0);
window.resizeTo(screen.width, screen.height - 100);
});
HTML:
<a target="_parent" href="javascript:void(0);" class="popup">Open new window</a>
現在開始點擊。我想直接以彈出的方式打開它。就像我雙擊test.html,它應該出現我的HTML數據和禁用地址欄,並沒有後退按鈕。
它是如何做到的?
刪除onclick處理程序支持? – putvande
它會直接打開彈出窗口,然後我不想彈出 –
你在你的問題中寫下「*我想直接打開它作爲彈出*」。 –