主题:多选列表弹出一个对话框,显示列表里的一条数据。
<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("将要进行数据授权,请插授权卡");
window.open("MapCommision.asp?id="+document.all("select1").value,'_blank','');
tmp++;
}
}
if(tmp==0)
{
window.alert("请选择一个硬件编码");
return false;
}
}
</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>
[color=FF0000]在这个id传送之前,弹出一个对话框,显示这个要传递的id所对应的rs("HardWareNo")”,把我那弹出的window.alert("将要进行数据授权,请插授权卡");
去掉。当所有id都传送完后,结束后再弹出对话框(授权完成)
请问这如何实现,这是不是用jscript捕捉id传送状态呀。我感觉有些难,请帮忙看看。[/color]
上面的有个错误。为多选时,总是循环传送最上边的那一个id值,下面的id不传送.
这怎么修改呀?
function SubForm()
{
var tmp = 0;
for(i=0;i<document.all("select1").length;i++)
{
if(document.all("select1")[i].selected == true)
{
window.alert("将要进行数据授权,请插授权卡");
window.open("MapCommision.asp?id="+document.all("select1").value,'_blank','');
tmp++;
}
}
if(tmp==0)
{
window.alert("请选择一个硬件编码");
return false;
}
}
</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>
[color=FF0000]在这个id传送之前,弹出一个对话框,显示这个要传递的id所对应的rs("HardWareNo")”,把我那弹出的window.alert("将要进行数据授权,请插授权卡");
去掉。当所有id都传送完后,结束后再弹出对话框(授权完成)
请问这如何实现,这是不是用jscript捕捉id传送状态呀。我感觉有些难,请帮忙看看。[/color]
上面的有个错误。为多选时,总是循环传送最上边的那一个id值,下面的id不传送.
这怎么修改呀?