0
彈出窗口,我hjave打開一個新窗口的JavaScript函數:爲什麼谷歌瀏覽器在不同的位置顯示那麼在Firefox和IE
我的index.htm網頁有3個環節:
<body>
<div class="nav">
<a href = "javascript:openContent('jobsearch.htm', 875, 1300, 0, 300)">Job Search</a><br />
<a href = "javascript:openContent('details.htm?page_id=7&details_id=7',875, 1300, 0, 300)">Job Details</a><br />
<a href = "javascript:openContent('apply.htm?page_id=10&details_id=7', 875, 1300, 0, 300)">Apply</a><br/>
</div>
</body>
我openContent
功能:
function openContent(url, width, height, top, left)
{
var win;
win = window.open(url, 'content', "toolbar=no, titlebar=no, status=no, scrollbars=no, resizable=no, top=" + top + ", left=" + left + ", width=" + width + ", height=" + height + "\"");
win.focus();
}
當點擊index.htm網頁的鏈接我打開某些網頁和firefox
和IE
,窗口運位於同一位置,但在chrome
上,它位於thr頁面最左側的位置。
任何想法?
謝謝