1

嗨,我正在那里做一个项目,我发现这样的行:

window.open("url/example",false);

但我在 w3schools.com 上看到 window.open 接受四个参数:

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

他们将第二个参数列为名称,它接受以下值:

name    Optional. Specifies the target attribute or the name of the window. 

支持以下值:

        _blank - URL is loaded into a new window. This is default
        _parent - URL is loaded into the parent frame
        _self - URL replaces the current page
        _top - URL replaces any framesets that may be loaded
        name - The name of the window

我只是想知道我的代码中的错误代表是什么提前谢谢......对不起,如果不是一个好问题。JS新手。

4

1 回答 1

4

false将被类型转换为字符串,即"false".

于 2012-09-10T12:39:15.333 回答