主子窗口之间的交互
此網頁如何與打開他的父網頁進行交互呢?
在自定義網頁(pop.aspx) 的Html代碼中加入以下語句.
?
<head>
<script language="javascript">
???? var parwindow;
???? parwindow = self.opener ;
???? function changeText()
???? {
????if(parwindow != null)
????{
?????try
?????{
?????? var temp = document.all ("txtTime").value;
??????? alert(temp);
???????? parwindow.document.all("l1").value =temp;
?????}
?????catch(e)
?????{
?????
?????}
????}
???? }
??</script>
</head>
在自定義網頁(pop.aspx) 定義一按鈕,在page_load中加入以下代碼:
this.Button1 .Attributes .Add ("onclick","changeText();window.close()");
父網頁中加入以TEXTBOX? HTML控件,id 為 l1;
txtTime 為要傳入父窗口的TEXTBOX? HTML控件id.
DONE!
轉載于:https://www.cnblogs.com/easylearning/archive/2005/12/08/293086.html
總結
- 上一篇: 约会用语(很经典的)
- 下一篇: 给学员的三点建议