1

我的 Javascript 没有达到标准,并且我在使链接在同一个窗口中打开而不是在新的弹出窗口中打开时遇到了问题。

在我的 html 中,我有以下链接

<a href="javascript:go_registerParamList('<%=appendStr%>');">Open An Account</a>

'go_registerParamList' 的 Javascript 是:

function go_registerParamList(paramList) {
    if (self.opener == null) {
        var base_window = self;
    } else {
        var base_window = self.opener;
    }
    if (paramList == '') {
        var link = 'https://${accountUrl}?action=go_register_popup&area=SK&button=openregbutton&promo=new_regbutton_en&crea=img&bus_channel=SK';
    } else {
        var link = 'https://${accountUrl}?action=go_register_popup&area=SK&button=openregbutton&promo=new_regbutton_en&crea=img' + '&' + paramList;
    }

    base_window.open(link, "pp_registration", "width=642, height=620, scrollbars=no,  menubar=no, status=no, scrollbars=no, resizable=yes,screenX=5, screenY=5, left=5, top=5");
}

提前致谢。

4

5 回答 5

2

JavaScript 函数:

function openInSameWindow(evt) {
    window.location=evt;
}

在同一窗口中打开的 HTML 超链接:

<a onclick="openInSameWindow('http://google.com')">Click to open in same window</a>

您可以调用该函数openInSameWindow在同一窗口中打开链接。

于 2012-10-23T06:54:31.407 回答
1

.open()方法打开一个新窗口。

相反,您可以这样做:

window.location = link;

所以:

function go_registerParamList(paramList)
{
    var link;
    if(paramList == '')
    {
        link = 'https://${accountUrl}?action=go_register_popup&area=SK&button=openregbutton&promo=new_regbutton_en&crea=img&bus_channel=SK';
    }
    else
    {
        link = 'https://${accountUrl}?action=go_register_popup&area=SK&button=openregbutton&promo=new_regbutton_en&crea=img&' + paramList;
    }
    window.location = link; 
}
于 2012-04-19T10:56:14.977 回答
0

使用 window.open(URL,name,specs,replace) 名称作为“_self”

 window.open(link, "_self" , "width=642, height=620, scrollbars=no,  menubar=no, status=no, scrollbars=no, resizable=yes,screenX=5, screenY=5, left=5, top=5");
于 2012-04-19T10:56:34.203 回答
0

您可以使用 将新文档加载到当前窗口中window.location.assign(link)

http://www.w3schools.com/jsref/obj_location.asp

于 2012-04-19T10:59:41.300 回答
0
Before you call the base_window.open() method try to alert the link variable. If its 
okay then you may not have problem with that.

Thanks.
于 2012-04-19T11:01:10.720 回答