asp如何使用div弹窗?
我是想实现,通过点击列表,使用div弹窗的方式显示出信息!例如我点击,列表001信息,就会通过div读取001信息,下面是我的代码,遇到的问题是,点击列表后,每次都读取的...
我是想实现,通过点击列表,使用div弹窗的方式显示出信息!例如我点击,列表001信息,就会通过div读取001信息,下面是我的代码,遇到的问题是,点击列表后,每次都读取的是最后一个信息!
代码:
//读取列表代码
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<li><a href="#" onclick="closeit()" title="<%=(Recordset1.Fields.Item("gn_mc").Value)%>" class="progress">
<div><img src="../admis_th/<%=(Recordset1.Fields.Item("gn_tb").Value)%>" width="65" height="65"></div>
<span class="hao"><%=(Recordset1.Fields.Item("gn_mc").Value)%></span> </a></li>
//弹出代码
<script language="JavaScript">
//弹出一个iframe层
function closeit(){
layer.open({
type: 2,
title: '<%=(Recordset1.Fields.Item("gn_mc").Value)%>',
shadeClose: true,
shade: false,
shift: 'right-bottom',
maxmin: true, //开启最大化最小化按钮
area: ['640px', '450px'],//尺寸大小
content: 'xs.asp'//读取调用的页面
});
}
//iframe
</script>
//读取列表记录集文件代码
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
谢谢 高手! 展开
代码:
//读取列表代码
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<li><a href="#" onclick="closeit()" title="<%=(Recordset1.Fields.Item("gn_mc").Value)%>" class="progress">
<div><img src="../admis_th/<%=(Recordset1.Fields.Item("gn_tb").Value)%>" width="65" height="65"></div>
<span class="hao"><%=(Recordset1.Fields.Item("gn_mc").Value)%></span> </a></li>
//弹出代码
<script language="JavaScript">
//弹出一个iframe层
function closeit(){
layer.open({
type: 2,
title: '<%=(Recordset1.Fields.Item("gn_mc").Value)%>',
shadeClose: true,
shade: false,
shift: 'right-bottom',
maxmin: true, //开启最大化最小化按钮
area: ['640px', '450px'],//尺寸大小
content: 'xs.asp'//读取调用的页面
});
}
//iframe
</script>
//读取列表记录集文件代码
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
谢谢 高手! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询