菜鸟问题 关于showModalDialog 请大侠帮忙看下,感谢啊!!!
<html><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/><title>...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>主导航网页</title>
<script type="text/javascript">
var ws=[4];
var wid=[4];
var url =["a.html","b.html","c.html","d.html"];
onload = function(){ wid[0] = open("a.html", "newwindow1", "height=500, width=500, top=50, left=600,toolbar=yes, menubar=no, scrollbars=yes"); };
{onunload = function(){ closeall(); };};
function closeall()
{
for(var i= 0; i <= 3; i++)
{
try{wid[i].close();}catch(e){};
}
}
function doOpen(x)
{
closeall();
wid[x]=window.open(url[x],"newwindow1", "height=500, width=500, top=50, left=600,toolbar=yes, menubar=no, scrollbars=yes");
ws[x] = 1;
}
</script>
</head>
<body>
<p><a href="#" onClick="javascript:doOpen(0)">打开a.html子网页</a></p>
<p><a href="#" onClick="javascript:doOpen(1)">打开b.html子网页</a></p>
<p><a href="#" onClick="javascript:doOpen(2)">打开c.html子网页</a></p>
<p><a href="#" onClick="javascript:doOpen(3)">打开d.html子网页</a></p>
</body>
</html>
我这段windows.open代码 ,我要什么把它改为showModalDialog的方式打开呢? 展开
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>主导航网页</title>
<script type="text/javascript">
var ws=[4];
var wid=[4];
var url =["a.html","b.html","c.html","d.html"];
onload = function(){ wid[0] = open("a.html", "newwindow1", "height=500, width=500, top=50, left=600,toolbar=yes, menubar=no, scrollbars=yes"); };
{onunload = function(){ closeall(); };};
function closeall()
{
for(var i= 0; i <= 3; i++)
{
try{wid[i].close();}catch(e){};
}
}
function doOpen(x)
{
closeall();
wid[x]=window.open(url[x],"newwindow1", "height=500, width=500, top=50, left=600,toolbar=yes, menubar=no, scrollbars=yes");
ws[x] = 1;
}
</script>
</head>
<body>
<p><a href="#" onClick="javascript:doOpen(0)">打开a.html子网页</a></p>
<p><a href="#" onClick="javascript:doOpen(1)">打开b.html子网页</a></p>
<p><a href="#" onClick="javascript:doOpen(2)">打开c.html子网页</a></p>
<p><a href="#" onClick="javascript:doOpen(3)">打开d.html子网页</a></p>
</body>
</html>
我这段windows.open代码 ,我要什么把它改为showModalDialog的方式打开呢? 展开
3个回答
展开全部
使用方法
vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
编辑本段参数说明
sURL -- 必选参数,类型:字符串。用来指定对话框要显示的文档的URL。 vArguments -- 可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。 sFeatures -- 可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
编辑本段参数说明
sURL -- 必选参数,类型:字符串。用来指定对话框要显示的文档的URL。 vArguments -- 可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。 sFeatures -- 可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
展开全部
<script type="text/javascript">
var url = "Interspace.aspx?classname=1";
var w = showModalDialog(url,window, "dialogWidth:800px;dialogHeight:800px;help:no;status:no;"); //这里W就是返回所获得的值。
document.getElementById(eleId).value = w; //这里就是把返回的值填写到输入框里.
}
</script>
var url = "Interspace.aspx?classname=1";
var w = showModalDialog(url,window, "dialogWidth:800px;dialogHeight:800px;help:no;status:no;"); //这里W就是返回所获得的值。
document.getElementById(eleId).value = w; //这里就是把返回的值填写到输入框里.
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
模式不一样,你可以参考下HTML 手册,我2年多不开发了,所以忘记了,以前也用过
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询