子窗口調用父頁面js實例

父頁面代碼:
javascript

<%@ page contentType="text/html; charset=GBK"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<title>new_page_title</title>
<script type="text/javascript">
      //查詢信息
      function doQuery_new(){
    	 var inputValue = $("#inputValue").val();
    	 alert("doQuery");
      }
	//新增信息
	  function doOpen_new(){
	  	var dlg = new Dialog("son_Dialog");
	  	dlg.Width = 450;
	  	dlg.Height = 150;
	  	dlg.Title = "son_Dialog";
	  	//URL爲子頁面路徑
	  	dlg.URL = "/smsadmgr/data/black/sonDialog.jsp";
	  	dlg.ShowMessageRow = false;
	  	dlg.parentWindow = window;
	  	dlg.OKEvent = function(){dlg.getIFrame().doSubmit()};
	  	dlg.show();
	  	dlg.OKButton.value ="刷新";	
	}
      </script>
</head>
<body onload="doQuery()">
<table id="table" align="left" cellSpacing="2" cellPadding="3"
	border="0">
	<tr>
		<td class="tdOdd" align="right"><label>手機號碼:</label></td>
		<td class="tdEven"><input type="text" id="inputValue" name="inputValue" value="cwqi_refresh" style="width: 100px" /></td>
		<td class="tdEven" colspan="6">&nbsp;&nbsp;<input type="button"onclick="doQuery_new()" value="查詢" /> 
		<input type="button"onclick="doOpen_new()" value="打開" /></td>
	</tr>
</table>
</body>
</html>

子窗口代碼:html

<%@ page contentType="text/html; charset=GBK"%>

<html>
<head>
<title>son_page</title>
</head>
<body onload="fillPhone()">
<form name="myForm" id="myForm"><br>
<table class="txttable"
	style="text-align: center; margin-left: 3px; margin-right: 3px">
	<tr>
		<td width="80" align="left">手機號碼:</td>
		<td align="left"><input id="BL_PHONENUM" name="BL_PHONENUM"
			maxlength="50" value="" style="width: 100px" /><font color="red">*</font>
		</td>
		<td width="80" align="left">證件號碼 :</td>
		<td align="left"><input id="ZJ_NUM" name="ZJ_NUM"
			maxlength="50" value="" style="width: 100px" /><font color="red">*</font>
		</td>
	</tr>
</table>
</form>
</body>
<script type="text/javascript">
	function fillPhone(){
		document.getElementById("BL_PHONENUM").value="加載填充";
		//$("#BL_PHONENUM").val("加載填充");
		}
function doSubmit(){
	var inputValue=document.getElementById("ZJ_NUM").value;
	if(inputValue==""){
		alert("證件號碼不能爲空");
		return;
	}
	alert(inputValue); 
	var dlg = parent.Dialog.getInstance("son_Dialog");
	var pframe = dlg.parentWindow;
	pframe.doQuery();
	dlg.close();
}
</script>
</html>
相關文章
相關標籤/搜索