asp 弹出选择框代码
在ASP中,需要做一个把一个选择页面的数据传回当前页面的文本框中。代码如下:<inputtype="text"name="textfield"id="textfield"...
在ASP中,需要做一个把一个选择页面的数据传回当前页面的文本框中。代码如下: <input type="text" name="textfield" id="textfield"><input type=button onClick="javascript:var tmp=showModalDialog('a.asp');" value='...' >
当点击按钮弹出a.asp页面。在a.asp页面中是二级联动选择菜单。如何把a.asp页面中选择好的值通过按钮确认提交回当前页面中的文本框中呢?这个代码是如何写的呢? 展开
当点击按钮弹出a.asp页面。在a.asp页面中是二级联动选择菜单。如何把a.asp页面中选择好的值通过按钮确认提交回当前页面中的文本框中呢?这个代码是如何写的呢? 展开
展开全部
建立两个页面,a.html,b.html,经测试成功
a.html
<form id="Form" name="Form" method="post" action="">
<input name="Info" type="text" id="Info" />
<input name="Button" type="button" id="Button" value="测试" onclick="window.open('b.html')" />
</form>
b.html
<script language="javascript">
<!--
function aa(){
var l,str;
l = checkbox.length;
str = "";
for(var i = 0; i < l; i++){
if(checkbox[i].checked)
str = str +","+ checkbox[i].value;
}
str = str.substring(1,str.length);
window.opener.document.Form.Info.value=str;
window.close();
}
//-->
</script>
<input type="checkbox" name="checkbox" id="checkbox" value="1" />
1
<input name="checkbox" type="checkbox" id="checkbox" value="2" />
2
<input name="checkbox" type="checkbox" id="checkbox" value="3" />
3
<input name="checkbox" type="checkbox" id="checkbox" value="4" />
4
<input name="checkbox" type="checkbox" id="checkbox" value="5" />
5
<input type="submit" name="Submit" value="提交" onclick="aa()" />
a.html
<form id="Form" name="Form" method="post" action="">
<input name="Info" type="text" id="Info" />
<input name="Button" type="button" id="Button" value="测试" onclick="window.open('b.html')" />
</form>
b.html
<script language="javascript">
<!--
function aa(){
var l,str;
l = checkbox.length;
str = "";
for(var i = 0; i < l; i++){
if(checkbox[i].checked)
str = str +","+ checkbox[i].value;
}
str = str.substring(1,str.length);
window.opener.document.Form.Info.value=str;
window.close();
}
//-->
</script>
<input type="checkbox" name="checkbox" id="checkbox" value="1" />
1
<input name="checkbox" type="checkbox" id="checkbox" value="2" />
2
<input name="checkbox" type="checkbox" id="checkbox" value="3" />
3
<input name="checkbox" type="checkbox" id="checkbox" value="4" />
4
<input name="checkbox" type="checkbox" id="checkbox" value="5" />
5
<input type="submit" name="Submit" value="提交" onclick="aa()" />
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询