2
我正在使用一個跟蹤窗口,該窗口用一個onclick按鈕打開,但是當第二次單擊該按鈕時,我希望關注窗口而不刷新內容。下面的代碼很好地集中了窗口,但它刷新了內容。任何人都可以建議如何關注窗口而不刷新內容?在JavaScript中沒有刷新的窗口焦點
<script>
function trackOpenWindow()
{
memwin=window.open("TRACK_Member.php", "myWin2", "toolbar=yes, scrollbars=yes, resizable=yes, height=590,width=1200");
if(window.focus)
memwin.focus()
if(!memwin.close)
memwin.focus()
}
</script>
<button name="subject" id="button1" type=" submit" style= "height:250px; width:480px; float:right" onClick='trackOpenWindow();'><h1>TRACK ACTIVITY</h1></button>
你能提供一個jsfiddle嗎? – henser 2014-09-21 19:44:55
http://jsfiddle.net/2e627tco/2/ – 2014-09-21 19:52:42