答案 0 :(得分:2)
改变这个:
var val = $('#event_options_id option:selected').html();
致:
var val = $('#event_options_id').val();
答案 1 :(得分:1)
<强> Fixed Working Version 强>
首先,您需要按照指出来调用.val()
。
var val = $('#event_options_id option:selected').val();
然后根据您使用的选择器,您需要在val上使用parseInt()
使其成为一个类似的数字
if ($.inArray(parseInt(val,10), arr) > -1) {
定义数组时还有一个额外的逗号。
完整工作代码
$(document).ready(function() {
$('#event_options_id').change(function() {
$('.container_add_form').remove();
var val = $('#event_options_id option:selected').val();
var arr = [3, 4];
if ($.inArray(parseInt(val,10), arr) > -1) {
$('<input type="hidden" name="age_required" id="age_required" value="yes" /><div class="container_add_form"><p class="text_content">Please enter your age for grouping purposes.<br /><input name="age" type="text" id="age" size="3" /></p></div>').fadeIn('slow').appendTo('.add_form');
}
});
});
答案 2 :(得分:0)
1)使用.val()
代替.html()
来获取选项的值。
2)您将字符串值与数组中的数字进行比较,这将始终失败。
var val = $('#event_options_id option:selected').val();
var arr = ['3', '4'];
答案 3 :(得分:0)
更改这些行。
var val = $('#event_options_id option:selected').val();
var arr = ["3", "4"];
要获得组合框值,必须使用'val()'而不是'html()'。 而且你必须将数组的元素更改为字符串。 变量val是一个字符串。 inArray将尝试将元素作为字符串而不是整数来查找。
答案 4 :(得分:-1)
我更新了您的代码:http://jsfiddle.net/kCLxJ/7/
$(document).ready(function() {
$('#event_options_id').change(function() {
$('.container_add_form').remove();
// you used .text() but should've used .val()
var val = $('#event_options_id option:selected').val();
var arr = [3, 4];
/*
another problem was that you didn't parse the value into an integer
but you were comparing the value to an array of integers
*/
if ($.inArray(parseInt(val), arr) > -1) {
$('<input type="hidden" name="age_required" id="age_required" value="yes" /><div class="container_add_form"><p class="text_content">Please enter your age for grouping purposes.<br /><input name="age" type="text" id="age" size="3" /></p></div>').fadeIn('slow').appendTo('.add_form');
}
});
});