- 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/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!