为了账号安全,请及时绑定邮箱和手机立即绑定

关于JavaScript中的window.open方法。

关于JavaScript中的window.open方法。

千万里不及你 2019-05-10 11:06:40
今天下了Myeclipse,打算试试做jsp和Html然后写了如下测试代码;<!DOCTYPE html> WindowsDemo.html<meta name="keywords" content="keyword1,keyword2,keyword3"><meta name="description" content="this is mypage"><meta name="content-type" content="text/html;charset=UTF-8"><script>function fun(thisurl){window.open(thisurl,"页面标题","width=370,heigth=160,scrollbars=yes,resizeable=no");}</script>
查看完整描述

2 回答

?
Smart猫小萌

TA贡献1911条经验 获得超7个赞

语法

open(URL, windowName, windowFeatures)
参数

URL

A string specifying the URL to open in the new window. See the Location object for a描述 of the URL components.

windowName

A string specifying the window name to use in the TARGET attribute of a FORM or A tag. windowName can contain only alphanumeric or underscore (_) characters.

windowFeatures

(Optional) A string containing a comma-separated list determining whether or not to create various standard window features. These options are described below.

windowName的参数取值为_blank,_self,_top,_parent,他们的含义与html中相同。
如:
<script language="javascript">
function backToIndex(){
window.open("../index.jsp","_parent");
}
</script>
<input type="submit" name="Submit" value="提交" onclick=” backToIndex();”>是不会响应的,这样就会响应:
<input type="button" name="Submit" value="提交" onclick=” backToIndex();”>

 




查看完整回答
反对 回复 2019-05-11
?
慕尼黑的夜晚无繁华

TA贡献1864条经验 获得超6个赞


window.open(pageURL,name,parameters)
其中:
pageURL 为子窗口路径
name 为子窗口句柄
parameters 为窗口参数(各参数用逗号分隔)



查看完整回答
反对 回复 2019-05-11
  • 2 回答
  • 0 关注
  • 478 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信