- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
注意:代码片段已更正并有效。
在 MySQL 表中,我有以下列(和相应的值):
下面是下拉菜单的代码和 JavaScript 函数,它们根据上一个下拉菜单中的值选择更改下一个下拉菜单的选项:
var typeOptions = {};
typeOptions['Fruit'] = [
'Apple',
'Orange'
];
typeOptions['Vegetable'] = [
'Potato',
'Pumpkin'
];
typeOptions['Select a category'] = [];
function changeCategory() {
var categoryChoice = document.getElementById('category');
var typeChoice = document.getElementById('type');
var selectedCategoryChoice = categoryChoice.options[categoryChoice.selectedIndex].value;
while (typeChoice.options.length) {
typeChoice.remove(0);
}
var typesAvailable = typeOptions[selectedCategoryChoice];
if (typesAvailable) {
selectType = document.createElement('option');
selectType.text = 'Select a type';
typeChoice.add(selectType);
var i;
for (i = 0; i < typesAvailable.length; i++) {
var type = new Option(typesAvailable[i], typesAvailable[i]);
typeChoice.options.add(type);
}
}
var subtypeChoice = document.getElementById('subtype');
if (selectedCategoryChoice == 'Select a category') {
while (subtypeChoice.options.length) {
subtypeChoice.remove(0);
}
selectSubtype = document.createElement('option');
selectSubtype.text = 'Select a subtype';
subtypeChoice.add(selectSubtype);
}
};
var subtypeOptions = {};
subtypeOptions['Apple'] = [
'Fuji',
'Granny Smith',
'Red Delicious'
];
subtypeOptions['Orange'] = [
'Navel',
'Valencia'
];
subtypeOptions['Potato'] = [
'Carlingford',
'Desiree'
];
subtypeOptions['Pumpkin'] = [
'Butternut',
'Kent'
];
function changeType() {
var typeChoice = document.getElementById('type');
var subtypeChoice = document.getElementById('subtype');
var selectedTypeChoice = typeChoice.options[typeChoice.selectedIndex].value;
while (subtypeChoice.options.length) {
subtypeChoice.remove(0);
}
if (selectedTypeChoice == 'Select a type') {
while (subtypeChoice.options.length) {
subtypeChoice.remove(0);
}
selectSubtype = document.createElement('option');
selectSubtype.text = 'Select a subtype';
subtypeChoice.add(selectSubtype);
}
var subtypesAvailable = subtypeOptions[selectedTypeChoice];
if (subtypesAvailable) {
selectSubtype = document.createElement('option');
selectSubtype.text = 'Select a subtype';
subtypeChoice.add(selectSubtype);
var i;
for (i = 0; i < subtypesAvailable.length; i++) {
var subtype = new Option(subtypesAvailable[i], subtypesAvailable[i]);
subtypeChoice.options.add(subtype);
}
}
};
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="col-sm-12">
<label for="category" id="categoryLabel" style="text-align: left">Category</label>
<select name="category" id="category" onchange="changeCategory()" class="form-control">
<option value="Select a category" selected>Select a category</option>
<option value="Fruit">Fruit</option>
<option value="Vegetable">Vegetable</option>
</select>
</div>
<div class="col-sm-12">
<label for="type" id="typeLabel" style="text-align: left">Type</label>
<select name="type" id="type" onchange="changeType()" class="form-control">
<option value="Select a type" selected>Select a type</option>
</select>
</div>
<div class="col-sm-12">
<label for="subtype" id="subtypeLabel" style="text-align: left">Subtype</label>
<select name="subtype" id="subtype" class="form-control">
<option value="Select a subtype" selected>Select a subtype</option>
</select>
</div>
我遇到的问题是,一旦我选择了第一个下拉菜单的值,第二个下拉菜单的“选择类型”部分和第三个下拉菜单的“选择子类型”部分就会立即消失。例如,当我在第一个下拉菜单中选择水果时,第二个下拉菜单默认为 Apple,但第三个下拉菜单不显示 Apple 子类型,我必须切换到 Orange,然后再切换回 Apple 才能显示。
此外,如果我将第一个下拉菜单重置为“选择类别”,第二个下拉菜单将重置为空白并且不显示“选择类型”,而第三个下拉菜单根本不会重置。
更新:
如果我删除以下代码:
while (typeChoice.options.length) {
typeChoice.remove(0);
}
我可以保留默认的“选择一个 x”值,但这意味着累积过滤不再正常工作(例如,在选择 Apple 后选择 Orange 只会将 Orange 子类型添加到子类型下拉列表中,而不会删除 Apple 子类型)。
更新 2:
我试图根据 this jsFiddle 添加“重置”按钮能够重置所有下拉菜单,但它只会重置第一个。
<a href="#" onclick="$('select').each(function() { this.selectedIndex = 0 });">Reset</a>
更新 3:
开始工作了。首先,在第一个下拉菜单的基础上增加了第二个下拉菜单的选项:
typeOptions['Select a category'] = [];
在添加第二个下拉列表的新选项的 FOR 循环之前,但在删除第二个下拉列表的所有旧选项的 WHILE 循环之后,结合此:
selectType = document.createElement('option');
selectType.text = 'Select a type';
typeChoice.add(selectType);
这可确保在第一个下拉列表中选择一个值时,“选择类型”的默认值会保留,但在第二个下拉列表中会保留,并保留在下拉列表的顶部,并且在添加其他选项之前仍处于选中状态。将第一个下拉菜单重置为“选择类别”时,第二个下拉菜单将丢失其剩余选项,然后重新添加默认值。
然后添加:
if (selectedCategoryChoice == 'Select a category') {
while (subtypeChoice.options.length) {
subtypeChoice.remove(0);
}
selectSubtype = document.createElement('option');
selectSubtype.text = 'Select a subtype';
subtypeChoice.add(selectSubtype);
}
此代码检查所选类别选项,如果它是用户选择的默认值,则重置子类型。
当第二个下拉菜单发生变化时,这同样适用于第三个下拉菜单。
最佳答案
开始工作了。首先,在第一个下拉菜单的基础上增加了第二个下拉菜单的选项:
typeOptions['Select a category'] = [];
在添加第二个下拉列表的新选项的 FOR 循环之前,但在删除第二个下拉列表的所有旧选项的 WHILE 循环之后,结合此:
selectType = document.createElement('option');
selectType.text = 'Select a type';
typeChoice.add(selectType);
这可确保在第一个下拉列表中选择一个值时,“选择类型”的默认值会保留,但在第二个下拉列表中会保留,并保留在下拉列表的顶部,并且在添加其他选项之前仍处于选中状态。将第一个下拉菜单重置为“选择类别”时,第二个下拉菜单将丢失其剩余选项,然后重新添加默认值。
然后添加:
if (selectedCategoryChoice == 'Select a category') {
while (subtypeChoice.options.length) {
subtypeChoice.remove(0);
}
selectSubtype = document.createElement('option');
selectSubtype.text = 'Select a subtype';
subtypeChoice.add(selectSubtype);
}
此代码检查所选类别选项,如果它是用户选择的默认值,则重置子类型。
当第二个下拉菜单发生变化时,这同样适用于第三个下拉菜单。
关于javascript - 连续下拉过滤缺少默认选择值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44994207/
如何检查一个元素是否立即隐藏。即如何通知元素的可见性。 在我的例子中,该元素是通过 slideUp 函数隐藏的。我应该立即收到有关该元素的可见性的通知。 我想到了使用bind()方法。但它没有类似 o
if (srcbloc == NULL) { fprintf(stderr, "warning!: memrip source is null!\n"); exit(1); } if
当我在数据库的旧 View 中清理一些问题时,我遇到了这个“奇怪”的连接条件: from tblEmails [e] join tblPersonEmails [pe]
如何水平对齐多张图像,一张一张地?它们不必适合宽度屏幕:相反,我希望它们超过后者的宽度,如果这有任何意义的话。 我已经检查了很多类似问题的答案,但找不到任何可以解决我的问题的答案。 HTML:
我知道 Cassandra 中的列有 TTL。但是也可以在一行上设置 TTL 吗?在每列上设置 TTL 并不能解决我的问题,如下面的用例所示: 在某些时候,一个进程想要删除一个带有 TTL 的完整行(
我有一个 NSTextField 和 Label,其值绑定(bind)到 View Controller 中的相同 NSString 这里的问题是标签只有在我按 Tab 时才会更新。 如何使其连续,以
例如。 1."abc"; ===>abc 2."ab c"; ===>ab_c 3."ab c"; ===>ab_c 4."ab c" ===>ab_c 对于多个连续空格也是如此。 我怎样
大家好,我想获取前一天或最后一天的信息,只有当我按下按钮时,它才会显示最后一天(星期六)的所有信息,如果我再次单击按钮,它将显示最后一天的信息(星期五)如果我再次点击它(星期四)谢谢你们帮助我 编辑:
我需要从实时音频流中提取ICY元数据,并正在使用mplayer进行此操作,因为它在播放音频流时会输出元数据。我欢迎其他方式执行此操作,目标是将更新的元数据(歌曲信息)保存到文本文件中,只要歌曲(或数据
语音识别有没有解决方案 只有几个字(2 个就够了,10 个就不错了。100 个就很棒了。不需要更多) 也在移动浏览器上运行(是否可以为此使用 flash(而不是 java)?) 可以安装在您自己的服务
我有一个单词列表, list1 = ['hello', 'how', 'are', 'you?', 'i', 'am', 'fine', 'thanks.', 'great!'] 我想加入, list
我正在开发一个程序,但我不断收到“对‘dosell’的 undefined reference ”,我不太明白发生了什么。这是函数的声明: void dosell(int *cash, int *nu
我无法提出执行我要做的事情所需的查询。 我有三个这样的表: client_files ----------------------- client_id file_id ---------
我一直在寻找一个插件/脚本,当到达底部时,它会从头开始继续滚动网站,就像一个连续的循环。 示例:http://unfold.no/和 http://www.aquiesdonde.com.ar/ 我尝
这个问题在这里已经有了答案: How to prevent scanf causing a buffer overflow in C? (6 个答案) 关闭 6 年前。 我一直在使用一个非常简单的程
给定一个整数数组,找到具有相同数量的 x 和 y 的连续子序列的总数。例如 x=1 和 y=2 的数组 [1,2,1] ans = 2 表示它的两个子数组 [1,2] 和 [2,1]。检查每个连续的子
所以,我有一个所有正自然数的数组。我得到了一个阈值。我必须找出总和小于给定阈值的数字(连续)的最大计数。 For example, IP: arr = {3,1,2,1} Threshold = 5
我制作了像内置相机一样的相机应用。 我想实现像内置相机一样的连续对焦功能。(此功能我不触摸屏幕,但相机会尝试自行对焦。) 因此,将其设置为 surfaceCreated : Camera.Pa
我有这样的数据: f x A 1.1 A 2.2 A 3.3 B 3.5 B 3.7 B 3.9 B 4.1 B 4.5 A 5.1 A 5.2 C 5.4 C 5.5 C 6.1 B 6.2 B
假设我有一个包含一组数据点的表,每个数据点由一个时间戳和一个值组成。如果至少有 N 个连续记录(按时间戳排序)高于给定值 X,我将如何编写返回 true (1) 的查询,否则返回 false (0)?
我是一名优秀的程序员,十分优秀!