1
window.open(url,"_blank_");

我在 url 中有一个敏感参数(密码),是否可以在打开的窗口/选项卡中更改地址栏上显示的 url?

4

2 回答 2

4
<form method="POST" action="url" target="_blank">
    <input type="password" name="password" />
</form>

编辑:

同样,用javascript完成:

function navigate(url, data, method){
    var form = document.createElement('form');
    form.setAttribute('method', method);
    form.setAttribute('action', url);

    for(var name in data){
        var hidden = document.createElement('input');
        hidden.setAttribute('type', 'hidden');
        hidden.setAttribute('name', name);
        hidden.setAttribute('value', data[name]);
        form.appendChild(hidden);
    }
    document.body.appendChild(form); // Does not need this line in chrome
    form.submit();
}

用法:

navigate('url', { password: 'mypassword' }, 'POST');
于 2013-03-07T12:59:28.653 回答
0

使用此语法

window.open(URL,name,specs,replace)

有关更多信息,请参阅本文档http://www.w3schools.com/jsref/met_win_open.asp

于 2013-03-07T13:00:55.443 回答