`
shoppingbill
  • 浏览: 58174 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
阅读更多

Index.html:

 

<html>
	<head>
    <script anguage="javascript">
				function show() {
					var settings="dialogWidth:245px;dialogHeight:390px;resizable:no;status:no";
					var ret = window.showModalDialog("sub.html","",settings);
					 
					alert("Question: What are you clicked in modal dialog? \n  Answer: "+ret);
				}
    </script>
	</head>
	<body>
		<input type="button" value="Show Modal Dialog" onclick="show();"/> 
	</body>
</html>

 

 

sub.html:

<html>
	<head>
		<script language="javascript">
			
				function done() {
				 
				  window.returnValue=" You are clicked done.";
				  window.close();
				}
				
				function cancel() {
					  
				   	window.returnValue=" You are clicked cancel.";
				   	window.close();
				}

		</script>
	</head>
	<body>
		<input type="button" value="Done" onclick="done();"/>
		<input type="button" value="Cancel" onclick="cancel();"/>
	</body>
</html>	
	

  

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics