js弹出模式窗体的例子
时间:2007-07-20 来源:flynetcn
页面 1.htm 弹出窗体的页面
------------------------------------------------------------------
<body>
<form id="form1">
<input type="button" value="打开模式窗体" onclick="open_Dialog();">
</form>
</body>
-------------------------------------------------------------------
页面 2.htm 被弹出的页面
-------------------------------------------------------------------
<html>
<head>
<base target="_self">
</head>
<body>
<form id="form1" action="1.htm">
<input type="button" value="设置返回值" onClick="SetVal();">
<input type="submit" value="提交">
<input type="button" value="关闭" onClick="window.close();">
</form>
<br>
<a href="http://www.baidu.com" target="_self">baidu</a>
<br><br>
当head中没有 <base target="_self"> 标记时,连接和表单中的 target="" 属性不管用,都是打开新窗口。
当head中存在 <base target="_self"> 标记时,连接和表单中有 target="" 属性不管值是什莫一概新弹出窗<br>口,
连接和表单中没有 target="" 属性时则在原窗口打开新页面。
</body>
</html>
------------------------------------------------------------------
------------------------------------------------------------------
<body>
<form id="form1">
<input type="button" value="打开模式窗体" onclick="open_Dialog();">
</form>
</body>
-------------------------------------------------------------------
页面 2.htm 被弹出的页面
-------------------------------------------------------------------
<html>
<head>
<base target="_self">
</head>
<body>
<form id="form1" action="1.htm">
<input type="button" value="设置返回值" onClick="SetVal();">
<input type="submit" value="提交">
<input type="button" value="关闭" onClick="window.close();">
</form>
<br>
<a href="http://www.baidu.com" target="_self">baidu</a>
<br><br>
当head中没有 <base target="_self"> 标记时,连接和表单中的 target="" 属性不管用,都是打开新窗口。
当head中存在 <base target="_self"> 标记时,连接和表单中有 target="" 属性不管值是什莫一概新弹出窗<br>口,
连接和表单中没有 target="" 属性时则在原窗口打开新页面。
</body>
</html>
------------------------------------------------------------------
相关阅读 更多 +