我想从单击按钮时打开的窗口打开网站。以下是屏幕截图:
http://www.flickr.com/photos/92807764@N06/8617593002/in/photostream
以下是我弹出窗口的方法:
<a onClick="MyWindow=window.open('availability.php','MyWindow','toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=600,height=300'); return false;">
<button class="Über-clean" type="submit"style="float:right;" >Check Availability</button>
</a>
所以我点击“检查Avalilability”然后窗口出现“立即预订”按钮。我想要做的是当我点击“立即预订”时,它会在原始主页上打开一个页面,换句话说,“检查可用性”这就是当我点击“立即预订”时会发生的情况:
http://www.flickr.com/photos/92807764@N06/8616499063/in/photostream
页面在窗口中打开,我不想要。如何在原始标签中打开booker.php?
答案 0 :(得分:0)
<a href="test.html" target="windowName">TEST</a>
如果已存在名为“windowName”的窗口或框架,则会将页面加载到其中。否则,首先创建一个新窗口。
窗口名称必须是单个单词(仅限字母,数字和下划线,不能以数字开头)。
有四个预定义目标:
_blank always opens a new window.
_self always opens in the current window or frame.
_parent opens in the parent frame, if any, otherwise as _self.
_top opens in entire browser window, even if there are frames.
例如在javascript中 window.open( “的test.html”, “windowName”);