javascript 窗口
1. showModalDialog返回值
<body>
<form id="Form1" method="post" runat="server">
<script language="JAVASCRIPT">
function btnGetReturnValue_onclick()
{
var temp= window.showModalDialog("Default1.aspx","","center=yes;help=no;status=no");
if(temp!=undefined)
{
document.Form1.TextBox1.value = temp;
}
else
{
document.Form1.TextBox1.value = "null";
}
}
</script>
<input type="Button" id=" btnGetReturnValue" onclick="return btnGetReturnValue_onclick()"
value="获取">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</form>
</body>
2.Prompt
<script language=javascript>
<!--
function pro()
{
var tempA=window.prompt(’请输入你的姓名’,’’);
if( tempA=="" || tempA==null )
{
tempA="你没有输入任何文字";
}
alert(tempA);
}
-->
</script>
<body onload="pro()"></body>
<!--
function pro()
{
var tempA=window.prompt(’请输入你的姓名’,’’);
if( tempA=="" || tempA==null )
{
tempA="你没有输入任何文字";
}
alert(tempA);
}
-->
</script>
<body onload="pro()"></body>