当我选择一个选项时,如何禁用滚动到所选项目的顶部?使用js进行简单的多重选择,可以使用多个选择而不使用clrt + C,代码向下。
window.onmousedown = function (e) {
var el = e.target;
if (el.tagName.toLowerCase() == 'option' && el.parentNode.hasAttribute('multiple')) {
e.preventDefault();
// toggle selection
if (el.hasAttribute('selected'))
el.removeAttribute('selected');
else
el.setAttribute('selected', '');
// hack to correct buggy behavior
var select = el.parentNode.cloneNode(true);
el.parentNode.parentNode.replaceChild(select, el.parentNode);
}
}
答案 0 :(得分:0)
您可以保存上一个scrollTop位置并重新应用它,如下所示:
window.onmousedown = function (e) {
var el = e.target;
if (el.tagName.toLowerCase() == 'option' && el.parentNode.hasAttribute('multiple')) {
e.preventDefault();
// save scroll state
var yeOldeScroll = el.scrollTop;
// toggle selection
if (el.hasAttribute('selected')) {
el.removeAttribute('selected');
} else {
el.setAttribute('selected', '');
}
// re-apply scroll state
el.scrollTop = yeOldeScroll;
// hack to correct buggy behavior
var select = el.parentNode.cloneNode(true);
el.parentNode.parentNode.replaceChild(select, el.parentNode);
}
}