用jquery如何获取select元素中当前选择的文本内容?(而不是选项的值)请问怎么写
4个回答
展开全部
试一下这个把,我刚才试过了,可以的
var tt=$("form select[name=selectName]").find('option:selected').text();
alert(tt);
把selectName换成你表单中的下拉框name值就行了
要是使用ID查询这样就行了
var tt=$("#selectId").find('option:selected').text();就行
var tt=$("form select[name=selectName]").find('option:selected').text();
alert(tt);
把selectName换成你表单中的下拉框name值就行了
要是使用ID查询这样就行了
var tt=$("#selectId").find('option:selected').text();就行
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script src="jquery-1.6.2.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$("#s").change(function(){
alert(this.options[this.options.selectedIndex].text);
});
});
</script>
</head>
<body>
<label>
<select name="myselect" id="s">
<option value="h">s</option>
<option value="d">t</option>
</select>
</label>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script src="jquery-1.6.2.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$("#s").change(function(){
alert(this.options[this.options.selectedIndex].text);
});
});
</script>
</head>
<body>
<label>
<select name="myselect" id="s">
<option value="h">s</option>
<option value="d">t</option>
</select>
</label>
</body>
</html>
更多追问追答
追问
什么时候调用到不是问题!
我现在的写法如下:
var hidestyle1 = $( "select[id*=ddlcpstyle1]" ).val();
alert(hidestyle1);
这样写呢,取出的是一个值,而不是选中的文本!我现在是要取select选中的文本!
追答
$(document).ready(function(){
$( "select[id=s]" ).change(function(){
alert(this.options[this.options.selectedIndex].text);
});
});
s
t
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<select name="select" class="form" id="getselect" onchange="getSelectedOption(this);">
<option value="1">a</option>
<option value="2">b</option>
<option value="3">c</option>
</select>
<script>
function getSelectedOption(obj){
value = obj.options[obj.options.selectedIndex].text;
alert(value);
}
</script>
<option value="1">a</option>
<option value="2">b</option>
<option value="3">c</option>
</select>
<script>
function getSelectedOption(obj){
value = obj.options[obj.options.selectedIndex].text;
alert(value);
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用 change 这个时间 改变的时候 就获取他的value 就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询