鉴于以下内容:
<select id="location">
<option value="a" myTag="123">My option</option>
<option value="b" myTag="456">My other option</option>
</select>
<input type="hidden" id="setMyTag" />
<script>
$(function() {
$("#location").change(function(){
var element = $(this);
var myTag = element.attr("myTag");
$('#setMyTag').val(myTag);
});
});
</script>
这不起作用...
当更改选择时,我需要做什么才能将隐藏字段的值更新为myTag的值。我假设我需要做一些关于获取当前选定值的事情......?
答案 0 :(得分:468)
您正在将事件处理程序添加到<select>
元素
因此,$(this)
将成为下拉菜单,而非选定的<option>
。
您需要找到所选的<option>
,如下所示:
var option = $('option:selected', this).attr('mytag');
答案 1 :(得分:44)
试试这个:
$(function() {
$("#location").change(function(){
var element = $(this).find('option:selected');
var myTag = element.attr("myTag");
$('#setMyTag').val(myTag);
});
});
答案 2 :(得分:24)
因为元素是“选择”而不是“选项”,你有自定义标记。
试试这个:$("#location option:selected").attr("myTag")
。
希望这有帮助。
答案 3 :(得分:9)
试试这个:
$("#location").change(function(){
var element = $("option:selected", this);
var myTag = element.attr("myTag");
$('#setMyTag').val(myTag);
});
在change()
的回调函数中,this
表示选择,而不是选定选项。
答案 4 :(得分:7)
假设你有很多选择。这可以做到:
$('.selectClass').change(function(){
var optionSelected = $(this).find('option:selected').attr('optionAtribute');
alert(optionSelected);//this will show the value of the atribute of that option.
});
答案 5 :(得分:6)
你非常接近:
var myTag = $(':selected', element).attr("myTag");
答案 6 :(得分:4)
一种形式的语法更简单。
var option = $('option:selected').attr('mytag')
...如果不止一种形式。
var option = $('select#myform option:selected').attr('mytag')
答案 7 :(得分:1)
以下是带有AJAX调用的整个脚本,用于定位具有多个列表的页面中的单个列表。在我使用“id”属性之前,上面的其他内容都没有为我工作,即使我的属性名称是“ItemKey”。通过使用调试器
我能够看到所选选项具有属性:带有JQuery“id”的映射和值。
<html>
<head>
<script type="text/JavaScript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
<select id="List1"></select>
<select id="List2">
<option id="40000">List item #1</option>
<option id="27888">List item #2</option>
</select>
<div></div>
</body>
<script type="text/JavaScript">
//get a reference to the select element
$select = $('#List1');
//request the JSON data and parse into the select element
$.ajax({
url: 'list.json',
dataType:'JSON',
success:function(data){
//clear the current content of the select
$select.html('');
//iterate over the data and append a select option
$.each(data.List, function(key, val){
$select.append('<option id="' + val.ItemKey + '">' + val.ItemText + '</option>');
})
},
error:function(){
//if there is an error append a 'none available' option
$select.html('<option id="-1">none available</option>');
}
});
$( "#List1" ).change(function () {
var optionSelected = $('#List1 option:selected').attr('id');
$( "div" ).text( optionSelected );
});
</script>
</html>
这是要创建的JSON文件...
{
"List":[
{
"Sort":1,
"parentID":0,
"ItemKey":100,
"ItemText":"ListItem-#1"
},
{
"Sort":2,
"parentID":0,
"ItemKey":200,
"ItemText":"ListItem-#2"
},
{
"Sort":3,
"parentID":0,
"ItemKey":300,
"ItemText":"ListItem-#3"
},
{
"Sort":4,
"parentID":0,
"ItemKey":400,
"ItemText":"ListItem-#4"
}
]
}
希望这会有所帮助,感谢上面所有人让我这么做。
答案 8 :(得分:0)
试试这个例子:
$("#location").change(function(){
var tag = $("option[value="+$(this).val()+"]", this).attr('mytag');
$('#setMyTag').val(tag);
});
答案 9 :(得分:0)
$("body").on('change', '#location', function(e) {
var option = $('option:selected', this).attr('myTag');
});
答案 10 :(得分:0)
您也可以使用data-myTag
<select id="location">
<option value="a" data-myTag="123">My option</option>
<option value="b" data-myTag="456">My other option</option>
</select>
<input type="hidden" id="setMyTag" />
<script>
$(function() {
$("#location").change(function(){
var myTag = $('option:selected', this).data("myTag");
$('#setMyTag').val(myTag);
});
});
</script>
答案 11 :(得分:0)
最简单的一个
$('#location').find('option:selected').attr('myTag');