ASP中使用onchange事件提交数据。
<selectname="select"><option>A</option><option>B</option><option>C</option><option>F<...
<select name="select">
<option>A</option>
<option>B</option>
<option>C</option>
<option>F</option>
<option>J</option>
</select>
实现功能是:选择某个值(例如:B)直接把B写到数据库里。我的分不足了,现在去攒分,能给多少是多少吧,请高手先帮我把这个难题解决掉啊。
高手帮忙啊? 展开
<option>A</option>
<option>B</option>
<option>C</option>
<option>F</option>
<option>J</option>
</select>
实现功能是:选择某个值(例如:B)直接把B写到数据库里。我的分不足了,现在去攒分,能给多少是多少吧,请高手先帮我把这个难题解决掉啊。
高手帮忙啊? 展开
展开全部
<select
name="select"
onchange=sel.submit();>
~~~~~~~~~~~~~~~~~~~~~
现在外面定义表单sel,然后用这个代码把表单提交给自己,同时判断输入并写入数据库。如果你这个页面有许多表单元素的话,具体情况还要具体分析。
具体代码如下:
——————————————————————————————————
<%
If
request("savesel")=True
Then
'以下为数据库操作,前提是定义过数据连接串了,视自己具体情况而定;
sql="select
xxx
from
xxxx
where
xxxxxx=xxxxxx"
rs.open
sql,conn,3,3
If
Not
rs.eof
Then
rs("xxxxx")=request("select")
rs.update
End
If
End
If
%>
<form
name='sel'
method='post'>
<select
name="select"
onchange=sel.submit();>
<option>A</option>
<option>B</option>
<option>C</option>
<option>F</option>
<option>J</option>
</select>
<input
type="hidden"
name="savesel"
value=true>
<form>
——————————————————————————————————
name="select"
onchange=sel.submit();>
~~~~~~~~~~~~~~~~~~~~~
现在外面定义表单sel,然后用这个代码把表单提交给自己,同时判断输入并写入数据库。如果你这个页面有许多表单元素的话,具体情况还要具体分析。
具体代码如下:
——————————————————————————————————
<%
If
request("savesel")=True
Then
'以下为数据库操作,前提是定义过数据连接串了,视自己具体情况而定;
sql="select
xxx
from
xxxx
where
xxxxxx=xxxxxx"
rs.open
sql,conn,3,3
If
Not
rs.eof
Then
rs("xxxxx")=request("select")
rs.update
End
If
End
If
%>
<form
name='sel'
method='post'>
<select
name="select"
onchange=sel.submit();>
<option>A</option>
<option>B</option>
<option>C</option>
<option>F</option>
<option>J</option>
</select>
<input
type="hidden"
name="savesel"
value=true>
<form>
——————————————————————————————————
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
给你个思路
建立一个单独页,根据传递过来的参数,写入数据库
给select增加onchange事件绑定某一javascript函数
函数的功能是组合url,给页面中某一个隐藏的iframe.src,或者使用XMLHTTP访问也可以
javascript函数功能如下:
1.获取 select 值
2.组合url,指向新建的功能页面,传递刚才获取的select值
3.使隐藏的iframe.src为刚才组合的url,或者直接创建XMLHTTP对象,使用get方法提交
建立一个单独页,根据传递过来的参数,写入数据库
给select增加onchange事件绑定某一javascript函数
函数的功能是组合url,给页面中某一个隐藏的iframe.src,或者使用XMLHTTP访问也可以
javascript函数功能如下:
1.获取 select 值
2.组合url,指向新建的功能页面,传递刚才获取的select值
3.使隐藏的iframe.src为刚才组合的url,或者直接创建XMLHTTP对象,使用get方法提交
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个 有点麻烦
var value = document.getElementsByName(select).options[document.getElementsByName(select).selectedIndex].text;
alert(value);
value 就是你要的值
要取得 2种办法1.存在 hidden控件里
程序 取hidden 值
2. ajax Post 取值
var value = document.getElementsByName(select).options[document.getElementsByName(select).selectedIndex].text;
alert(value);
value 就是你要的值
要取得 2种办法1.存在 hidden控件里
程序 取hidden 值
2. ajax Post 取值
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这涉及到AJAX的知识,说起来就复杂了,有兴趣的话可以看这个入门http://www.w3school.com.cn/ajax/index.asp
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询