为什么我这个asp无法给div添加边框
<!--#includefile="conn.asp"--><html><head><title>注册</title><styletype="text/css">#one...
<!--#include file="conn.asp"-->
<html>
<head>
<title>注册</title>
<style type="text/css">
#one{
background-color:#f08300;float:left;width:50px;height:30px;}
#two{
background-color:#880808;float:left;width:50px;height:30px;}
</style>
<script language="javascript">
function check(ds){
var qw=document.getElementById(ds).getAttribute("tittle");
document.getElementById("mytt").value=qw;
document.st.submit();
document.getElementById(ds).style.cssText='border:2px solid #000';
}
</script>
</head>
<body>
<form method="post" name="st" id="st" action="">
<div id="one" tittle="one" onClick="check('one')"></div>
<div id="two" tittle="two" onClick="check('two')"></div>
<input name="mytt" type="hidden" id="mytt" value="">
<%
dim sql,im,sql1
set rs=server.createobject("adodb.recordset")
sql="select name from test2 where id=1"
rs.open sql,conn,1,1
conn.execute(sql)
im=request("mytt")
response.write("<script language='javascript'>document.getElementById(rs('name')).style.cssText='border:2px solid #000';</script>")
rs.close
%>
</form>
<% conn.close %>
</body>
</html> 展开
<html>
<head>
<title>注册</title>
<style type="text/css">
#one{
background-color:#f08300;float:left;width:50px;height:30px;}
#two{
background-color:#880808;float:left;width:50px;height:30px;}
</style>
<script language="javascript">
function check(ds){
var qw=document.getElementById(ds).getAttribute("tittle");
document.getElementById("mytt").value=qw;
document.st.submit();
document.getElementById(ds).style.cssText='border:2px solid #000';
}
</script>
</head>
<body>
<form method="post" name="st" id="st" action="">
<div id="one" tittle="one" onClick="check('one')"></div>
<div id="two" tittle="two" onClick="check('two')"></div>
<input name="mytt" type="hidden" id="mytt" value="">
<%
dim sql,im,sql1
set rs=server.createobject("adodb.recordset")
sql="select name from test2 where id=1"
rs.open sql,conn,1,1
conn.execute(sql)
im=request("mytt")
response.write("<script language='javascript'>document.getElementById(rs('name')).style.cssText='border:2px solid #000';</script>")
rs.close
%>
</form>
<% conn.close %>
</body>
</html> 展开
1个回答
展开全部
document.st.submit();
这个是提交表单的代码,你一点击DIV就会提交表单同时刷新页面,当然看不到边框了。
document.getElementById(ds).style.cssText='border:2px solid #000';
document.st.submit();
这样你试试,就知道是怎么回事了,会先有边框,后再提交,要浏览器够慢才会看到
这个是提交表单的代码,你一点击DIV就会提交表单同时刷新页面,当然看不到边框了。
document.getElementById(ds).style.cssText='border:2px solid #000';
document.st.submit();
这样你试试,就知道是怎么回事了,会先有边框,后再提交,要浏览器够慢才会看到
更多追问追答
追问
response.write("document.getElementById(rs('name')).style.cssText='border:2px solid #000';")
是这个我之前那句只是测试
追答
你这句语法有错误
response.write("document.getElementById('"&rs('name')&"').style.cssText='border:2px solid #000';")
这样试试
rs('name')是Asp的得用连接符和字符串连接
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询