- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从下拉列表中选择一个术语,然后从同一个术语中选择一个颜色或值。例如,我要选择“Account Executive”,然后选择“red”。那里已经有 jquery 库了吗?是否可以?它也可以是下拉菜单而不是颜色。
这就是我填充下拉 C# 的方式
DataSet dsRoles = obj.ds("Role");
ddlRole.DataSource = dsRoles ;
ddlRole.DataTextField = "Term";
ddlRole.DataValueField = "Term";
ddlRole.DataBind();
ddlRole.Items.Insert(0, new ListItem("== Select 1 Term ==", ""));
ASP
<asp:ListBox ID="ddlRole" AutoPostBack="false" runat="server" SelectionMode="Multiple">
最佳答案
不幸的是,我不知道有什么开箱即用的控件。 select2 是比较流行的多选 jquery 库之一。您可以覆盖 js 事件,使其按照您希望完成的方式运行。我不确定如果不进行一些重构,这会有多大的可扩展性,但这里有一个关于如何在单个选择上进行的演练。
select2 的 CDN 链接:https://select2.org/getting-started/installation
首先设置你的基本选择元素
<select id="tag" style="width: 50%" multiple="multiple"></select>
乐趣从js开始
我们需要跟踪我们选择的值
var collectionArray = [];
接下来是输入我们的 select2 控件的初始数组而 id 是位置的唯一标识符,简单文本是您选择时要显示的值,文本是下拉列表中的 html 值
文本元素有一个颜色 block ,每个颜色 block 都有一个点击元素,用于将 id 和颜色的数字表示传递给 js 函数。这应该进一步展开,但为了演示保持简单
var data = [
{ id: 0, simpleText:'Account Executive', text: '<div style="display:block; min-height:30px; cursor:default;"><div style="float:left;">Account Executive</div><div style="float:right;"><table><tr><td class="tableSelect tableSelectRed" onclick="select2Override(0,0)"></td><td class="tableSelect tableSelectOrange" onclick="select2Override(0,1)"></td><td class="tableSelect tableSelectGreen"onclick="select2Override(0,2)"></td></tr></table></div></div>' },
{ id: 1,simpleText:'Account Management', text: '<div style="display:block; min-height:30px; cursor:default;"><div style="float:left;">Account Management</div><div style="float:right;"><table><tr><td class="tableSelect tableSelectRed" onclick="select2Override(1,0)"></td><td class="tableSelect tableSelectOrange"onclick="select2Override(1,1)"></td><td class="tableSelect tableSelectGreen" onclick="select2Override(1,2)"></td></tr></table></div></div>' }];
接下来我们用我们的数据数组初始化我们的 select2 对象。我们需要覆盖选择和取消选择功能并自行处理这些
$("#tag").select2({
data: data,
//these options are telling it to use html from the text element. They are required or else it will just generate your html as text
templateResult: function (d) { return $(d.text); },
templateSelection: function (d) { return $(d.text); },
tags: true
}).on("select2:selecting", function (e) {
// make sure we are on the list and not within input box
//this is overriding the default selection event of select2, we will hadle that in our own onclick function based upon the color box they selected
if (e.params.args.originalEvent.currentTarget.nodeName === 'LI') {
e.preventDefault();
}
}
).on('select2:unselecting', function (e) {
//we are injecting another method here when the object is unselected. We want to remove it from our master list to prevent duplicate inputs on our add function
removeFromList(e.params.args.data.id);
});
我们需要手动处理从我们的选择列表中删除并确保我们的主集合保持最新
function removeFromList(id) {
//actual remove from the selected list
$('#tag option[value=' + id + ']').remove();
//actual remove from the master collection to prevent dups
collectionArray = collectionArray.filter(entry => entry.tagID != id)
}
接下来是我们用于选择的主要插入者功能。我们首先需要检查该项目是否已经存在于我们的主要收藏中(我们不希望重复)。如果没有,那么我们需要给它一个唯一的 ID,以便以后在我们的主列表中引用。我们将从当前选择列表中找到最大值,以确保不会重复,然后将新值注入(inject)我们的选择列表,确保它被标记为已选择,并进入我们的主集合数组:
function select2Override(id, color) {
//our override function for when anyone selects one of the color boxes
//first check if it is already in our master list, if so then dont add a dup, remove it!
var doesExistsAlready = collectionArray.filter(entry => entry.type === id && entry.color === color);
if (doesExistsAlready.length != 0) {
for (var i = 0; i < doesExistsAlready.length; i++) {
removeFromList(doesExistsAlready[i].tagID);
}
} else {
//its not found in our master list
//we need to get a unique if to accompy this entry, fund the highest existing value in the current list and add 1
var lastID = findMaxValue($('#tag')) + 1;
//push it to our master list
collectionArray.push({ "type": id, "color": color, "tagID": lastID });
//get the selected value from our initial list so we can pull out the "simple text" to display
var check = $.grep(data, function (obj) { return obj.id === id; })[0];
//decorate our selection with a color depending on what they selected
var colorDisplay;
switch(color) {
case 0:
colorDisplay = "red";
break;
case 1:
colorDisplay = "orange"
break;
case 2:
colorDisplay = "green";
break;
}
//prep our new select option with our new color, simple text and unique id and set to selected
var newOption = new Option('<div style="color:' + colorDisplay + ';display:inline;">' + check.simpleText + '</div>', lastID, true, true);
//append it to our list and call our change method so js reacts to the change
$('#tag').append(newOption).trigger('change');
}
}
这是我们的 JS 函数,用于确保我们从已存在的选择列表项中获得唯一 ID。
//function to find the max value from our already existing list
function findMaxValue(element) {
var maxValue = undefined;
$('option', element).each(function() {
var val = $(this).attr('value');
val = parseInt(val, 10);
if (maxValue === undefined || maxValue < val) {
maxValue = val;
}
});
return maxValue;
}
最后,我们需要重写一些 css,以便我们注入(inject)到列表中的项目不会显示以供进一步选择。幸运的是,我们可以获取 select2 在选择项目时用于默认行为的禁用属性:
.select2-container--default .select2-results__option[aria-selected=true] {
display: none;
}
此外,一些 css 使我在选择元素上的 html 看起来半像样:
.tableSelect {
min-width: 20px;
height: 20px;
border: 1px solid #fff;
cursor: pointer;
margin-bottom: 10px;
}
.tableSelectGreen {
background-color: green;
}
.tableSelectRed {
background-color: red;
}
.tableSelectOrange {
background-color: orange;
}
blockMe{
min-height:20px;
min-width:20px;
}
综合起来:
//this is where we will keep track of our selected values
var collectionArray = [];
//this is out initial array to feed into our select2 control
//whereas id is the unique identifier of the position, simple text is the value you want to dispaly when selected, text is the html value in the dropdown
//the text element has a your color blocks and each one has a on click element to pass the id and a numeric representation of the color into a js function. This blwon out further but keeping it simple for demo
var data = [
{ id: 0, simpleText:'Account Executive', text: '<div style="display:block; min-height:30px; cursor:default;"><div style="float:left;">Account Executive</div><div style="float:right;"><table><tr><td class="tableSelect tableSelectRed" onclick="select2Override(0,0)"></td><td class="tableSelect tableSelectOrange" onclick="select2Override(0,1)"></td><td class="tableSelect tableSelectGreen"onclick="select2Override(0,2)"></td></tr></table></div></div>' },
{ id: 1,simpleText:'Account Management', text: '<div style="display:block; min-height:30px; cursor:default;"><div style="float:left;">Account Management</div><div style="float:right;"><table><tr><td class="tableSelect tableSelectRed" onclick="select2Override(1,0)"></td><td class="tableSelect tableSelectOrange"onclick="select2Override(1,1)"></td><td class="tableSelect tableSelectGreen" onclick="select2Override(1,2)"></td></tr></table></div></div>' }];
//here we initialize our select2 object with our data array.
$("#tag").select2({
data: data,
//these options are telling it to use html from the text element. They are required or else it will just generate your html as text
templateResult: function (d) { return $(d.text); },
templateSelection: function (d) { return $(d.text); },
tags: true
}).on("select2:selecting", function (e) {
// make sure we are on the list and not within input box
//this is overriding the default selection event of select2, we will hadle that in our own onclick function based upon the color box they selected
if (e.params.args.originalEvent.currentTarget.nodeName === 'LI') {
e.preventDefault();
}
}
).on('select2:unselecting', function (e) {
//we are injecting another method here when the object is unselected. We want to remove it from our master list to prevent duplicate inputs on our add function
removeFromList(e.params.args.data.id);
});
function removeFromList(id) {
//actual remove from the selected list
$('#tag option[value=' + id + ']').remove();
//actual remove from the master collection to prevent dups
collectionArray = collectionArray.filter(entry => entry.tagID != id)
}
function select2Override(id, color) {
//our override function for when anyone selects one of the color boxes
//first check if it is already in our master list, if so then dont add a dup, remove it!
var doesExistsAlready = collectionArray.filter(entry => entry.type === id && entry.color === color);
if (doesExistsAlready.length != 0) {
for (var i = 0; i < doesExistsAlready.length; i++) {
removeFromList(doesExistsAlready[i].tagID);
}
} else {
//its not found in our master list
//we need to get a unique if to accompy this entry, fund the highest existing value in the current list and add 1
var lastID = findMaxValue($('#tag')) + 1;
//push it to our master list
collectionArray.push({ "type": id, "color": color, "tagID": lastID });
//get the selected value from our initial list so we can pull out the "simple text" to display
var check = $.grep(data, function (obj) { return obj.id === id; })[0];
//decorate our selection with a color depending on what they selected
var colorDisplay;
switch(color) {
case 0:
colorDisplay = "red";
break;
case 1:
colorDisplay = "orange"
break;
case 2:
colorDisplay = "green";
break;
}
//prep our new select option with our new color, simple text and unique id and set to selected
var newOption = new Option('<div style="color:' + colorDisplay + ';display:inline;">' + check.simpleText + '</div>', lastID, true, true);
//append it to our list and call our change method so js reacts to the change
$('#tag').append(newOption).trigger('change');
}
}
//function to find the max value from our already existing list
function findMaxValue(element) {
var maxValue = undefined;
$('option', element).each(function() {
var val = $(this).attr('value');
val = parseInt(val, 10);
if (maxValue === undefined || maxValue < val) {
maxValue = val;
}
});
return maxValue;
}
.tableSelect {
min-width: 20px;
height: 20px;
border: 1px solid #fff;
cursor: pointer;
margin-bottom: 10px;
}
.tableSelectGreen {
background-color: green;
}
.tableSelectRed {
background-color: red;
}
.tableSelectOrange {
background-color: orange;
}
blockMe{
min-height:20px;
min-width:20px;
}
.select2-container--default .select2-results__option[aria-selected=true] {
display: none;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.9/css/select2.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.9/js/select2.min.js"></script>
<select id="tag" style="width: 50%" multiple="multiple"></select>
关于javascript - 在一个列表框中选择多个术语 asp c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57527307/
我正在使用 drupal 6.20 以及一些模块,包括面板、 View 和其他一些模块.. 问题是,每当我尝试启用面板提供的分类法覆盖页面时,我都会收到此错误,我修改了它等等,我似乎找不到一种方法来启
我正在寻找在类(非静态)中声明的实例变量的替代 OO/Java 术语,或者更具体地说,在用 JPA 注释“装饰”的 Java 类中声明的实例变量: @Entity @Table(name = "Dep
字母“t”在 LISP 中是什么意思? 例如: (defun last2 (lst) (cond ((null lst) nil) ((null (cdr lst)) (car l
我是 Java 的新手,想了解更多。我有一个当前问题想要得到解答,但我也想知道该技术指的是什么,以便我可以做一些进一步的阅读。 我目前有这样的东西: public class BasicActivit
是否有针对 HTML 标签的术语来区分哪些应该有结束标签,哪些不应该? 例如,和 应该有伴随 和 标签。 另一方面,和 不应该。 第一组叫什么,第二组叫什么? 最佳答案 我相信 是一个“空元素”,而不
基本上,问题已经总结在标题中。如果我们在不同的命名空间中有两个具有相同签名(即相同的名称、参数类型和顺序、泛型类型参数编号)的方法/函数,这算不算重载? 这是一个 C# 问题,但我很想为不同的 OOP
在 OO 范式中,我们选择使用类,因为它们可以帮助我们分解系统,并提供很好的附带好处,例如封装、职责分离、继承、模块化等。 如果我们在组件级别查看软件系统,我们是否可以简单地以相同的概念方式对待组件,
创建拉取请求和打开拉取请求之间有区别吗? 创建拉取请求的一些短语示例: 创建一个拉取请求以提议和协作对存储库的更改。 您可以在创建拉取请求时指定要将更改合并到哪个分支。 要创建草稿拉取请求,请使用下拉
我发现this script可以循环遍历.csv文件并将它们组合成一个Excel工作表。然后,我创建了第二个脚本,以如下方式调用该脚本: echo "Combining .csv files into
我忘记了 javascript 中用来描述特定现象的术语。它与内联函数中访问变量的方式有关。我也不太明白这个理论。我依稀记得下面的代码 for(var c = 0; c< 10; c++) { a
如何清除Java中的标准输入(术语)? 一点历史:我正在编写一个“反射”程序,算法非常简单: wait a random amount of time print "press enter" read
给定以下代码,是否存在一个静态方法的名称/术语,它为每个现有实例调用同名的实例方法? 这是任何编程语言的常见做法吗? 用例是能够进行一个函数调用并确保所有实例都受到影响,而无需为该方法复制代码。 注意
这个问题在这里已经有了答案: Accessing nested JavaScript objects and arrays by string path (44 个答案) 关闭 6 年前。 我需要澄
我的目标是从给定的输入文件中读取每行的第一个元素/术语,然后根据第一个元素是什么来决定要做什么(使用 if-else 构造)。 IE。如果第一个元素/单词恰好是“the”(如下面的代码中所述),那么我
在 Java 中,对象 可以有一个运行时类型(这是它创建时的类型)和一个转换类型(您将其转换为的类型)。 我想知道这些类型的正确名称是什么。例如 class A { } class B extends
根据 Python 2.7.12 文档,User-defined methods : User-defined method objects may be created when getting a
据我所知,nbsp(不间断空格)是这样的:。但制表符 (\t) 也是不间断空格,对吗?我的意思是它不会创建新行。 如果上述所有内容都是正确的,那么如何调用可以包含 或 \t 的变量?像 tabOrNb
我使用 GAS 已经有一段时间了,但没有很强的 Javascript 背景,并且在忽略大小写的情况下按字母顺序对工作表进行排序时遇到了问题。我做了一些搜索,并根据 SO 中的其他公开答案和其他一些来源
我是初学者,我在编程中发现了术语指针的几种定义。我想知道哪一个是正确的(也许两个都是)? a - 指针是保存内存地址的变量。鉴于此定义,在以下代码 char *msg; 中,我们可以说变量 msg 是
给定以下分支 A---B---C topic (HEAD) / D---E---F---G master 并运行命令 git rebase master 这是否意味着,我们是 将 t
我是一名优秀的程序员,十分优秀!