首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

札记手册

2012-11-15 
笔记手册   /script      test3.htm      script   var a window.dialogArgume

笔记手册
   </script>
  
   test3.htm
   ====================
   <script>
   var a = window.dialogArguments
   alert("您传递的参数为window对象,名称:" + a.name)
   </script>
  
   返回参数
   可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:
  
   test4.htm
   ===================
   <script>
   var a = window.showModalDialog("test5.htm")
   for(i=0;i<a.length;i++) alert(a[i])
   </script>
  
   test5.htm
   ===================
   <script>
   function sendTo()
   {
   var a=new Array("a","b")
   window.returnValue = a
   window.close()
   }
   </script>
   <body>
   <form>
   <input value="返回" type=button onclick="sendTo()">
   </form>


?
网页对窗口控制已经有很多文章介绍了,但控制对话框的技巧却不是很多,下面是一些基本的控制方法:

window.showModelessDialog("url","name","参数:值;参数:值;……")

url 对话框窗口链接地址
name 对话框的名称,可以为空
scroll 是否有滚动条,0表示无,非0表示有
status 是否有状态栏,0表示无,非0表示有
help 是否有问号,0表示无,非0表示有
resizable 是否可以用鼠标拖动改变框提大小,0表示不可以,非0表示可以
dialogWidth 对话框宽度值
dialogHeight 对话框高度值

window.showModelessDialog("http://xbs.3322.org/","dialogwin",
"scroll:0;status:0;help:1;resizable:1;dialogWidth:480px;
dialogHeight:320px")

模态窗口(showModalDialog)的专题讨论(资料收集)


讨论内容
模态窗口的打开
模态窗口的关闭
模态窗口的参数传递
其他
模态窗口的打开
window.showModalDialog("DialogPage.aspx","newwin","dialogHeight: 200px; dialogWidth: 150px; dialogTop: 458px; dialogLeft: 166px; edge: Raised; center: Yes; help: Yes; resizable: Yes; status: Yes;");

模态窗口的关闭
window.close();

模态窗口的参数传递
传值
ParentPage.aspx:
window.showModalDialog("DialogPage.aspx?para1=aaa&para2=bbb");

DialogPage.aspx:
string str1=Request.QueryString["para1"].toString();
string str2=Request.QueryString["para2"].toString();

返回值
DialogPage.aspx:
window.returnValue="aaa";

ParentPage.aspx:
var str=window.showModalDialog("DialogPage.aspx");

其他
aspx页面在showmodeldialog情况下为什么一提交就重新打开一个页面?
showmodaldialog打开的页面中在<head></head>之间加入一行:<base target="_self">
如果是在数据绑定的模式窗体中,还可以在DataGrid中创建一个模板列,再加入Html的按钮,在按钮中加入:OnClick="returnValue='<%#DataBind.Eval(Container.DataItem,"Name")%>';window.close()"
就可以实现在模式对话框中传递DataGrid的具体选中的行的相关值。

?

<script language="JavaScript">

function ForceWindow ()
{
? this.r = document.documentElement;
? this.f = document.createElement("FORM");
? this.f.target = "_blank";
? this.f.method = "post";
? this.r.insertBefore(this.f, this.r.childNodes[0]);
}
ForceWindow.prototype.open = function (sUrl)
{
? this.f.action = sUrl;
? this.f.submit();
}
?var myWindow = new ForceWindow();

?myWindow.open("try1.html");

?

?

?</script>

?

热点排行