嗨,我正在那里开展一个项目,我发现这样的一行:
window.open("url/example",false);
但是我在w3schools.com上看到window.open接受了四个参数:
http://www.w3schools.com/jsref/met_win_open.asp
他们将第二个参数列为 name ,它接受以下值:
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
我只是想知道代码中的false表示什么 提前谢谢...对不起,如果不是好问题。 JS新手。
答案 0 :(得分:4)
false
将对字符串进行类型转换,该字符串为"false"
。