<script language="javascript" type="text/javascript"> function xiu( )
{varyy=document.getElementById("xx");varx=yy.value;window.open("xinwenxg.asp?id="+x);...
{
var yy=document.getElementById("xx");
var x=yy.value;
window.open("xinwenxg.asp?id="+x);
}
</script>
<body>
<style>
.a{font-size:12px;margin-top:80px;width:500px; height:500px; border:2px solid #0000ff;}
.b{border-bottom:2px solid #0000ff; font-size:20px; width:340px;}
.c{margin-top:20px;}
</style>
<body>
<div align="center">
新闻数据库修改
<div class="a" >
<div>
<div class="c">
<form name="form" action="" method="post">
<input type="text" size="40" name="txt" value=""><input type="submit" name="cha" value=" 查询 ">
</div>
<%
if request.form("cha")=" 查询 " then
set conn=server.createobject("ADODB.connection")
CreateConn1 conn,2
set rs=server.createobject("ADODB.Recordset")
sql="select * from xwnr where 标题 like '%"&request.form("txt")&"%'"
rs.Open sql,conn,1,1
if not rs.eof then
do while not rs.eof
%>
<div class="b"> <%=rs("标题")%> <input type="radio" name="xg" value="<%=rs("ID")%>" id="xx"></div>
<%
rs.movenext
loop
%>
<input type="button" name="xg" value="修改" onclick="xiu( );">
<%
end if
rs.close
conn.close
set rs=nothing
set conn=nothing
end if
%>
</form>
我希望这个网页中 的ID 值能通过 JAVASCRIPT 连接到另一个网页中但是每次我修改的时候,他都是修改最上面的那个数据库中的新闻,,求解怎样才能我选择哪个就修改的是那改革
我想说这个网页中的那个表单 redio 中的ID才是我将要传递的ID 值 但是我 每次传递过去的值 都是最顶的那个ID 是不是我写的有问题 ,,,我可能写的传递又问题 请大神帮帮我
万分感谢!!! 展开
var yy=document.getElementById("xx");
var x=yy.value;
window.open("xinwenxg.asp?id="+x);
}
</script>
<body>
<style>
.a{font-size:12px;margin-top:80px;width:500px; height:500px; border:2px solid #0000ff;}
.b{border-bottom:2px solid #0000ff; font-size:20px; width:340px;}
.c{margin-top:20px;}
</style>
<body>
<div align="center">
新闻数据库修改
<div class="a" >
<div>
<div class="c">
<form name="form" action="" method="post">
<input type="text" size="40" name="txt" value=""><input type="submit" name="cha" value=" 查询 ">
</div>
<%
if request.form("cha")=" 查询 " then
set conn=server.createobject("ADODB.connection")
CreateConn1 conn,2
set rs=server.createobject("ADODB.Recordset")
sql="select * from xwnr where 标题 like '%"&request.form("txt")&"%'"
rs.Open sql,conn,1,1
if not rs.eof then
do while not rs.eof
%>
<div class="b"> <%=rs("标题")%> <input type="radio" name="xg" value="<%=rs("ID")%>" id="xx"></div>
<%
rs.movenext
loop
%>
<input type="button" name="xg" value="修改" onclick="xiu( );">
<%
end if
rs.close
conn.close
set rs=nothing
set conn=nothing
end if
%>
</form>
我希望这个网页中 的ID 值能通过 JAVASCRIPT 连接到另一个网页中但是每次我修改的时候,他都是修改最上面的那个数据库中的新闻,,求解怎样才能我选择哪个就修改的是那改革
我想说这个网页中的那个表单 redio 中的ID才是我将要传递的ID 值 但是我 每次传递过去的值 都是最顶的那个ID 是不是我写的有问题 ,,,我可能写的传递又问题 请大神帮帮我
万分感谢!!! 展开
2个回答
展开全部
//方法改成带参数的
function xiu(rsid){
window.open("xinwenxg.asp?id="+rsid);
}
//修改按钮
<input type="button" name="xg" value="修改" onclick='xiu(<%=rs("ID")%> );' >
function xiu(rsid){
window.open("xinwenxg.asp?id="+rsid);
}
//修改按钮
<input type="button" name="xg" value="修改" onclick='xiu(<%=rs("ID")%> );' >
追问
谢谢
追答
不客气
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询