- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要帮助来根据文本顺序对我的文本进行排序。我使用 Sortable js 对它们的顺序进行排序。我已经在选择/选项标签中实现了它。它在 mozilla 中工作正常,但在 chrome 中不起作用。但是当我使用 ul/li 标签时,它在两个浏览器中都工作正常。任何人都可以帮我在选择/选项标签中完成这项任务吗?
这是演示: https://rubaxa.github.io/Sortable/这是文件链接: https://github.com/RubaXa/Sortable
提前致谢。
<!DOCTYPE html>
<html>
<head></head>
<body>
<select id="foo1" multiple>
<option value="1">Sunny Thakur</option>
<option value="2">Deepak kanyan</option>
<option value="3">Harpreet Singh</option>
<option value="4">karmjeet Singh</option>
<option value="5">Gurvinder Singh</option>
</select>
<script src="Sortable.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
<script src="st/app.js"></script>
</body>
</html>
最佳答案
我现在能想到的唯一解决方案是使用 JavaScript 和 CSS 创建您自己的自定义选择列表小部件。这是我从Mozilla Developer Network借用的一个概念。 。以下是其实时版本的链接,您可以在 Chrome 中进行测试 ( Sortable Select List in Chrome )。
HTML
<form class="no-widget">
<select name="myFruit">
<option>Cherry</option>
<option>Lemon</option>
<option>Banana</option>
<option>Strawberry</option>
<option>Apple</option>
</select>
<div class="select" role="listbox">
<span class="value">Cherry</span>
<ul id="myList" class="optList hidden" role="presentation">
<li class="option" role="option" aria-selected="true">Cherry</li>
<li class="option" role="option">Lemon</li>
<li class="option" role="option">Banana</li>
<li class="option" role="option">Strawberry</li>
<li class="option" role="option">Apple</li>
</ul>
</div>
</form>
CSS
.widget select,
.no-widget .select {
position : absolute;
left : -5000em;
height : 0;
overflow : hidden;
}
/* --------------- */
/* Required Styles */
/* --------------- */
.select {
position: relative;
display : inline-block;
}
.select.active,
.select:focus {
box-shadow: 0 0 3px 1px #227755;
outline: none;
}
.select .optList {
position: absolute;
top : 100%;
left : 0;
}
.select .optList.hidden {
max-height: 0;
visibility: hidden;
}
/* ------------ */
/* Fancy Styles */
/* ------------ */
.select {
font-size : 0.625em; /* 10px */
font-family : Verdana, Arial, sans-serif;
-moz-box-sizing : border-box;
box-sizing : border-box;
padding : 0.1em 2.5em 0.2em 0.5em; /* 1px 25px 2px 5px */
width : 10em; /* 100px */
border : 0.2em solid #000; /* 2px */
border-radius : 0.4em; /* 4px */
box-shadow : 0 0.1em 0.2em rgba(0,0,0,.45); /* 0 1px 2px */
background : #F0F0F0;
background : -webkit-linear-gradient(90deg, #E3E3E3, #fcfcfc 50%, #f0f0f0);
background : linear-gradient(0deg, #E3E3E3, #fcfcfc 50%, #f0f0f0);
}
.select .value {
display : inline-block;
width : 100%;
overflow : hidden;
white-space : nowrap;
text-overflow : ellipsis;
vertical-align: top;
}
.select:after {
content : "▼";
position: absolute;
z-index : 1;
height : 100%;
width : 2em; /* 20px */
top : 0;
right : 0;
padding-top : .1em;
-moz-box-sizing : border-box;
box-sizing : border-box;
text-align : center;
border-left : .2em solid #000;
border-radius: 0 .1em .1em 0;
background-color : #000;
color : #FFF;
}
.select .optList {
z-index : 2;
list-style: none;
margin : 0;
padding: 0;
background: #f0f0f0;
border: .2em solid #000;
border-top-width : .1em;
border-radius: 0 0 .4em .4em;
box-shadow: 0 .2em .4em rgba(0,0,0,.4);
-moz-box-sizing : border-box;
box-sizing : border-box;
min-width : 100%;
max-height: 10em; /* 100px */
overflow-y: auto;
overflow-x: hidden;
}
.select .option {
padding: .2em .3em;
}
.select .highlight {
background: #000;
color: #FFFFFF;
}
JavaScript
// ------- //
// HELPERS //
// ------- //
NodeList.prototype.forEach = function(callback) {
Array.prototype.forEach.call(this, callback);
}
// -------------------- //
// Function definitions //
// -------------------- //
function deactivateSelect(select) {
if (!select.classList.contains('active')) return;
var optList = select.querySelector('.optList');
optList.classList.add('hidden');
select.classList.remove('active');
}
function activeSelect(select, selectList) {
if (select.classList.contains('active')) return;
selectList.forEach(deactivateSelect);
select.classList.add('active');
};
function toggleOptList(select, show) {
var optList = select.querySelector('.optList');
optList.classList.toggle('hidden');
}
function highlightOption(select, option) {
var optionList = select.querySelectorAll('.option');
optionList.forEach(function(other) {
other.classList.remove('highlight');
});
option.classList.add('highlight');
};
function updateValue(select, index) {
var nativeWidget = select.previousElementSibling;
var value = select.querySelector('.value');
var optionList = select.querySelectorAll('.option');
optionList.forEach(function(other) {
other.setAttribute('aria-selected', 'false');
});
optionList[index].setAttribute('aria-selected', 'true');
nativeWidget.selectedIndex = index;
value.innerHTML = optionList[index].innerHTML;
highlightOption(select, optionList[index]);
};
function getIndex(select) {
var nativeWidget = select.previousElementSibling;
return nativeWidget.selectedIndex;
};
// ------------- //
// Event binding //
// ------------- //
window.addEventListener("load", function() {
var form = document.querySelector('form');
form.classList.remove("no-widget");
form.classList.add("widget");
});
window.addEventListener('load', function() {
var selectList = document.querySelectorAll('.select');
selectList.forEach(function(select) {
var optionList = select.querySelectorAll('.option'),
selectedIndex = getIndex(select);
select.tabIndex = 0;
select.previousElementSibling.tabIndex = -1;
updateValue(select, selectedIndex);
optionList.forEach(function(option, index) {
option.addEventListener('mouseover', function() {
highlightOption(select, option);
});
option.addEventListener('click', function(event) {
updateValue(select, index);
});
});
select.addEventListener('click', function(event) {
toggleOptList(select);
});
select.addEventListener('focus', function(event) {
activeSelect(select, selectList);
});
select.addEventListener('blur', function(event) {
deactivateSelect(select);
});
select.addEventListener('keyup', function(event) {
var length = optionList.length,
index = getIndex(select);
if (event.keyCode === 40 && index < length - 1) {
index++;
}
if (event.keyCode === 38 && index > 0) {
index--;
}
updateValue(select, index);
});
});
});
//initialize Sortable
var list = document.getElementById("myList");
Sortable.create(list);
关于javascript - Sortable Js 不能在带有 Select/Option 标签的 Chrome 中工作,但可以与 ul/li 标签一起正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35746486/
非常简单的问题 - 是否可以通过 Chromium 创建 google chrome 扩展,并让在不同操作系统上运行 Chrome 的人使用相同的扩展? 我正在Ubuntu上开发。 最佳答案 是的,完
我了解 chrome.bookmarks API(记录在 http://goo.gl/tIb6V6 )旨在用于开发访问/操作我的 Chrome 书签的 Chrome 扩展程序(当然要在 Chrome
在比较开源浏览器 Firefox 和 Chromium 的扩展、附加组件和列表时,我试图找到一些有趣的数据。 我感兴趣的是多宿主扩展(两个浏览器列表上都可用的扩展)。 但是当浏览 Chromium 扩
使用新的 chrome.notifications API,我无法从我的扩展程序中获取通知以显示。即使是最基本的通知也无法为我显示,但我没有收到任何错误,并且回调函数已正确执行。 list .json
我正在构建一个在 Chrome 上运行的信息亭媒体,可以播放带音频的视频。我知道默认情况下,chrome 只允许自动播放带有静音 Prop 的视频。 而且我知道我可以通过 chrome://flags
我从来没有真正写过 真实 Chrome 扩展程序。不久前我做了一个只是一个链接下拉列表,但这并不重要。无论如何,与其先回到关于编写 Chrome 扩展程序的大量教程中,不如先确保我的想法是可行的。 我
主要目的是在单个容器中运行多个 chrome 浏览器(9 个浏览器)。 我有一个集线器和节点设置,其中包含多个浏览器的容器,可在单个 chrome 节点容器中运行。我使用以下 docker 命令创建了
我想写一个小的 chrome 扩展程序,它应该从网页 A(当前网页)获取信息,将选项卡更新到网页 B,然后将代码注入(inject)网页 B。不幸的是,以下代码正在将网页更新到 B 但注入(injec
是否可以打开 Chrome 开发者工具来检查 Chrome 应用? 最佳答案 所有可调试目标都列在 chrome://inspect/ 下。请参阅“应用程序”标签。 关于google-chrome -
我正在为 Google Chrome 开发一个应用程序,我想知道如何收费。 问题是我住在巴西,在这个链接上它告诉我它不支持 Chrome 网上应用店付款。如果没有 Chrome 网上商店付款,我可以通
我刚刚更新到 Chrome 32.0.1700.76 m(在 Win7 上)并且开发人员工具已更改。 特别令人痛苦的是用于检查页面元素的放大镜图标消失了。也没有提到它的快捷方式列表。 任何人都知道这已
我在 chrome-extension API (chrome.webrequest) 中遇到问题。 我的 list .json { "name": "tesst", "version": "
我已经制作了 chrome 主机来在我的扩展程序和我的进程之间传递 native 消息,我的进程在 chrome 启动时启动,但在我关闭 chrome 时不关闭,我应该向主机的 list 添加参数还是
文档对此非常不清楚。我知道如果您自己托管您的扩展程序,您可以通过增加版本号来自动更新您的扩展程序。但是,我不知道您是否可以在仍发布到 chrome 网上商店的同时进行自托管。 我不敢相信 Google
我最近一直在使用 Selenium WebDriver。我还专门与 chromedriver 合作。每当我打开一个新的 chrome 窗口 (driver.get(url)) 时,Chrome 都会以
我指的是chrome://flags 我很想知道是否可以通过自定义 chrome 扩展启用或禁用特定的 chrome 标志? 例如-我想启用 Enable Media Source API on e
当我在 chrome 开发者仪表板上向我的扩展程序上传更新时, 它无法这样做,它显示, An error occurred: Failed to process your item. Chrome W
我正在尝试编写一个需要用户身份验证的 chrome 扩展。 Google's tutorial建议我需要先上传到网上商店才能获得 key : Login to the Google APIs Cons
我已经开发了一个 Chrome 扩展程序并且我已经打包了它。 我将我的扩展程序发送给一些人试用,但 Chrome 开始阻止它在商店中找不到的扩展程序。 有没有办法安装我的扩展程序而不会被 Chrome
某些 Chrome 扩展不适用于 Chromium。例如:http://code.google.com/chrome/extensions/samples.html#5d81304a17cf7ac28
我是一名优秀的程序员,十分优秀!