在HTML中怎样在一页面中用alert()方法得到另一页面中返回的值
1.新建一个空白页面(“模式窗口.htm”),在<body>中加入onLoad事件2.使用javascript自定义一个函数用于页面加载时调用,3.在函数中使用windo...
1.新建一个空白页面(“模式窗口.htm”),在<body>中加入onLoad事件
2.使用javascript自定义一个函数用于页面加载时调用,
3.在函数中使用window对象的showModalDialog()方法打开一个对话框,
4.在“counter.htm”页面中通过表单提交事件返回密码框的值。
5.在“模式窗口.htm”页面中定义一个变量获取账户信息的页面的返回值,将返回值用alert()方法显示到页面
//关键是不会:怎样在一页面中用alert()方法得到另一页面中返回的值 展开
2.使用javascript自定义一个函数用于页面加载时调用,
3.在函数中使用window对象的showModalDialog()方法打开一个对话框,
4.在“counter.htm”页面中通过表单提交事件返回密码框的值。
5.在“模式窗口.htm”页面中定义一个变量获取账户信息的页面的返回值,将返回值用alert()方法显示到页面
//关键是不会:怎样在一页面中用alert()方法得到另一页面中返回的值 展开
1个回答
展开全部
alert()可以得到另一页面中返回的值??
a.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>模式窗口</title>
<script language="javascript">
<!--
function openwin(url)
{
var opener = window.open(url,"counter") ;
}
-->
</script>
</head>
<body>
<a href="javascript:openwin('b.html');">打开counter</a><br />
<div id="user"></div><br /><div id="pwd"></div>
</body>
</html>
------------------
b.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>counter</title>
<script language="javascript">
function tj()
{
try
{
window.opener.document.getElementById('user').innerHTML=document.f1.user.value;
window.opener.document.getElementById('pwd').innerHTML=document.f1.pwd.value;
window.opener.alert("用户:"+document.f1.user.value+" 密码:"+document.f1.pwd.value);
}
catch(e)
{
this.close();
}
this.close();
}
</script>
</head>
<body>
<form name="f1">
<input name="user" type="text" /> <input name="pwd" type="password" /> <input name="submit" type="button" value="提交" onclick="tj();" />
</form>
</body>
</html>>
a.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>模式窗口</title>
<script language="javascript">
<!--
function openwin(url)
{
var opener = window.open(url,"counter") ;
}
-->
</script>
</head>
<body>
<a href="javascript:openwin('b.html');">打开counter</a><br />
<div id="user"></div><br /><div id="pwd"></div>
</body>
</html>
------------------
b.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>counter</title>
<script language="javascript">
function tj()
{
try
{
window.opener.document.getElementById('user').innerHTML=document.f1.user.value;
window.opener.document.getElementById('pwd').innerHTML=document.f1.pwd.value;
window.opener.alert("用户:"+document.f1.user.value+" 密码:"+document.f1.pwd.value);
}
catch(e)
{
this.close();
}
this.close();
}
</script>
</head>
<body>
<form name="f1">
<input name="user" type="text" /> <input name="pwd" type="password" /> <input name="submit" type="button" value="提交" onclick="tj();" />
</form>
</body>
</html>>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询