| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 535 人关注过本帖
标题:(请教渚薰)多选列表弹出一个对话框,显示列表里的一条数据。id值传送
取消只看楼主 加入收藏
widolatry
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-9-1
收藏
 问题点数:0 回复次数:3 
(请教渚薰)多选列表弹出一个对话框,显示列表里的一条数据。id值传送

<script language="javascript">
function SubForm()
{
var tmp = 0;
for(i=0;i<=document.all("select1").length;i++)
{
if(document.all("select1")[i].selected == true)
{
window.alert(document.all("select1").options[i].innerText);
window.open("MapCommision.asp?id=" + document.all("select1").value,'_blank',"");
window.alert("上一条授权完毕,请插下一张卡");
tmp++;
}
}
if(tmp==0)
{
window.alert("请选择一个硬件编码");
return false;
}
else
{
return true;
}
}
</script>

<p align="center" class="style1"> <font color="#000000">授权信息</font></p>
<form method="post" name="downform" action="MapCommision.asp">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<select name="select1" size="20" multiple>
<%
UserName=Session("UserName")
set rs=server.CreateObject("ADODB.RecordSet")
rs.Source="select * from MapCommision where Username='"&UserName&"'"
rs.Open rs.Source,conn,1,1

if not rs.EOF then
while not rs.EOF
Response.Write "<option value="""&rs("id")&""">"&rs("HardWareNo") &"</option>"
rs.MoveNext
wend
else
Response.Write "<option value=''>目前还没有</option>"
end if
rs.Close
set rs=nothing
%>
</select>
</td>
<tr>
<tr>
<td><p align="center"><input type="button" value=" 数据授权 " onclick="SubForm()"></p></td>
</tr>
</table>
</form>

上面的有个错误。为多选时,总是循环传送最上边的那一个id值,下面的id不传送。这个问题还没解决呀!谢谢

[此贴子已经被作者于2006-9-1 16:53:39编辑过]

搜索更多相关主题的帖子: 对话框 列表 数据 document 
2006-09-01 10:31
widolatry
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-9-1
收藏
得分:0 
上面的还有个错误。为多选时,总是循环传送最上边的那一个id值,下面的id不传送。
弹出对话框问题解决了
2006-09-01 16:47
widolatry
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-9-1
收藏
得分:0 
还是循环传递最上面的那一个id值,这怎么解决呀
2006-09-02 09:04
widolatry
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-9-1
收藏
得分:0 
for(i=0;i&lt;document.all("select1").length;i++)
   {
     if(document.all("select1").options[i].selected)
        {   
            window.alert("请先插入硬件编码为:"+document.all("select1").options[i].innerText+" 的卡再按确定,谢谢合作!");
            window.open("MapCommision.asp?id=" + document.all("select1").options[i].value,'_blank',"");
               window.alert("上一条授权完毕,请插下一张卡");
            tmp++;        
        }
    }
我高定了谢谢帮忙!!谢谢!1
2006-09-02 09:47
快速回复:(请教渚薰)多选列表弹出一个对话框,显示列表里的一条数据。id值传送 ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025177 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved