- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想防止在选择单元格范围时打开下拉菜单。我知道,我可以添加一个 onmousedown
事件并调用 event.preventDefault()
问题是,这也会禁用单击事件的下拉菜单。有没有办法区分范围的选择(鼠标被按下并没有立即释放)和单击单个单元格(鼠标被按下并释放)?我也尝试过 onselectstart
但在这种情况下它对我没有帮助。
这里有一个小演示: https://jsfiddle.net/vqsv99t4/2/
最佳答案
我已更新您的代码以根据您的需要工作。
禁用文本选择:从 Javascript 删除到 CSS
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
not supported by any browser */
}
停止来自 <td>
的事件气泡至document
:event.stopPropagation()
将停止将事件冒泡到文档 mousemove()
和mouseup()
听众
逻辑:存储开始选择的第一个单元格(单元格上的 mousedown()
事件)。然后,检查选择已停止的单元格(mouseup()
事件)。
修改了 HTML 以更好地使用。
data-
单元格上用于存储行列信息的属性更新于2016年11月11日
Selectmenu
替换<select>
。
Reason:
<select>
dropdown can't be triggered using JavaScript/JQuery.
//console.clear();
var BUTTON_LEFT = 1,
BUTTON_RIGHT = 2;
var startCell = null;
(function() {
$("#select").selectmenu();
$(".mouse-event-cell")
.on('mousedown', onMouseDown)
.on('mouseup', onMouseUp)
.on('mousemove', onMouseOver);
$(document)
.on('mousemove', onDocMouseOver)
.on('mouseup', onDocMouseUp);
})();
function onDocMouseOver(e) {
if (e.buttons !== BUTTON_LEFT) {
startCell = null;
clearFill();
}
}
function onDocMouseUp(e) {
if (e.buttons !== BUTTON_LEFT) {
startCell = null;
clearFill();
}
}
function onMouseDown(e) {
isInsideCell = true;
if (startCell === null)
startCell = e.currentTarget;
};
function onMouseOver(e) {
if (startCell !== null) {
fill(startCell, e.currentTarget, 'region');
}
e.stopPropagation();
}
function onMouseUp(e) {
var endCell = e.currentTarget;
if (startCell !== null) {
fill(startCell, endCell, 'selected');
}
startCell = null;
e.stopPropagation()
}
function fill(startCell, endCell, classToAdd) {
var col0 = startCell.dataset['column'],
row0 = startCell.dataset['row'],
col1 = endCell.dataset['column'],
row1 = endCell.dataset['row'],
colMin = Math.min(col0, col1),
colMax = Math.max(col0, col1),
rowMin = Math.min(row0, row1),
rowMax = Math.max(row0, row1);
clearFill();
if (startCell === endCell) {
console.log('same-cell');
} else {
console.log('range-of-cell');
}
//console.log(startCell, endCell);
for (var itCol = colMin; itCol <= colMax; itCol++) {
for (var itRow = rowMin; itRow <= rowMax; itRow++) {
$('#codexpl .mouse-event-cell#cell_' + itRow + '_' + itCol).addClass(classToAdd);
}
}
}
function clearFill() {
$('#codexpl .mouse-event-cell').removeClass('selected').removeClass('region');
}
.ui-selectmenu-button.ui-button {
width: 5em;
}
select {
width: auto;
}
table {
border-collapse: separate;
}
td.mouse-event-cell {
border: 1px solid #ddd;
padding: 2px 10px;
height: 30px;
/*To disable the text selection*/
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-khtml-user-select: none;
/* Konqueror */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently
not supported by any browser */
}
td.selected {
background-color: goldenrod;
color: white;
}
td.region {
border-style: dashed;
border-color: #BBB;
}
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="selecting multiple cells">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" />
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
</head>
<body>
<table id="codexpl">
<tr>
<th>#</th>
<th>Columna</th>
<th>Relative</th>
<th>Isso</th>
</tr>
<tr>
<td id="cell_0_0" data-row="0" data-column="0" class='mouse-event-cell'>
<select id="select">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</td>
<td id="cell_0_1" data-row="0" data-column="1" class='mouse-event-cell'>cell[0][1]</td>
<td id="cell_0_2" data-row="0" data-column="2" class='mouse-event-cell'>cell[0][2]</td>
<td id="cell_0_3" data-row="0" data-column="3" class='mouse-event-cell'>cell[0][3]</td>
<td id="cell_0_4" data-row="0" data-column="4" class='mouse-event-cell'>cell[0][4]</td>
</tr>
<tr>
<td id="cell_1_0" data-row="1" data-column="0" class='mouse-event-cell'>cell[1][0]</td>
<td id="cell_1_1" data-row="1" data-column="1" class='mouse-event-cell'>cell[1][1]</td>
<td id="cell_1_2" data-row="1" data-column="2" class='mouse-event-cell'>cell[1][2]</td>
<td id="cell_1_3" data-row="1" data-column="3" class='mouse-event-cell'>cell[1][3]</td>
<td id="cell_1_4" data-row="1" data-column="4" class='mouse-event-cell'>cell[1][4]</td>
</tr>
<tr>
<td id="cell_2_0" data-row="2" data-column="0" class='mouse-event-cell'>cell[2][0]</td>
<td id="cell_2_1" data-row="2" data-column="1" class='mouse-event-cell'>cell[2][1]</td>
<td id="cell_2_2" data-row="2" data-column="2" class='mouse-event-cell'>cell[2][2]</td>
<td id="cell_2_3" data-row="2" data-column="3" class='mouse-event-cell'>cell[2][3]</td>
<td id="cell_2_4" data-row="2" data-column="4" class='mouse-event-cell'>cell[2][4]</td>
</tr>
<tr>
<td id="cell_3_0" data-row="3" data-column="0" class='mouse-event-cell'>cell[3][0]</td>
<td id="cell_3_1" data-row="3" data-column="1" class='mouse-event-cell'>cell[3][1]</td>
<td id="cell_3_2" data-row="3" data-column="2" class='mouse-event-cell'>cell[3][2]</td>
<td id="cell_3_3" data-row="3" data-column="3" class='mouse-event-cell'>cell[3][3]</td>
<td id="cell_3_4" data-row="3" data-column="4" class='mouse-event-cell'>cell[3][4]</td>
</tr>
<tr>
<td id="cell_4_0" data-row="4" data-column="0" class='mouse-event-cell'>cell[4][0]</td>
<td id="cell_4_1" data-row="4" data-column="1" class='mouse-event-cell'>cell[4][1]</td>
<td id="cell_4_2" data-row="4" data-column="2" class='mouse-event-cell'>cell[4][2]</td>
<td id="cell_4_3" data-row="4" data-column="3" class='mouse-event-cell'>cell[4][3]</td>
<td id="cell_4_4" data-row="4" data-column="4" class='mouse-event-cell'>cell[4][4]</td>
</tr>
</table>
</body>
</html>
关于Javascript:选择时防止下拉菜单打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40481926/
我开始学习 Oracle JavaSE 认证考试。 我创建了一个 IntelliJ Idea 项目来处理我的训练源代码。我想尽量减少 IntelliJ Idea 的帮助。 我只想使用:颜色语法、终端选
默认情况下,.DPR 和 .DPROJ 的文件扩展名描述是相同的,因此在资源管理器中打开具有相同基本名称的项目文件时,两个文件描述都会列为“Delphi 项目文件”,这提供了一个选择开发人员 - 要打
我目前正在从 android 网站了解 Navigation Drawer,我正在使用他们的示例 http://developer.android.com/training/implementing-
我需要帮助。 我在 A3:A500 列中有单词和数字 我需要改变他们的名字。 如果单元格包含单词“previ”,则如果单元格是数字,则将字母“p”放入新列中。如果它是一个词,那么不要放“p” ...就
我正在尝试编写一些 VBA,它允许按钮添加一个空行,保持相同的格式,就在 SUM 公式所在的行上方。 到目前为止,我实现了创建一个空行,但我不知道如何实现代码以让该新行继承相同的格式样式(包括边框和格
我在共享网络驱动器上有两个工作簿: 工作簿 A(表) 工作簿 B(数据透视表 - 连接到源工作簿 A) 我正在尝试,当打开 Workbook B 时,运行宏并执行以下操作: 取消保护工作簿 B 上的某
我正在开发一个需要在在线/离线模式下进行测试的应用程序,所以我想知道是否有任何方法可以打开/关闭 iPad 模拟器的互联网连接(不关闭我的 MAC 的互联网服务)。请帮忙 最佳答案 不,模拟器使用与您
我需要对目录的所有文件执行我的脚本(搜索)。以下是有效的方法。我只是问哪个最好。 (我需要格式的文件名:parsedchpt31_4.txt) 全局: my $parse_corpus; #(for
在我的代码中,我想有条件地执行一些操作: #ifdef DEBUG NSLog(@"I'm in debug mode"); #endif 我已配置“项目”->“编辑项目设置”->“构建”选项卡,以便
我编写了一个小程序来比较笔记本电脑的性能。为了使程序CPU更加密集,我用一些多线程代码(通过Parallel API实现)实现了Rabin-Karp模式匹配算法。 我注意到,当在关闭编译器优化标志的情
使用以下代码来关闭模态并打开第二个模态。总是遇到同样的问题可以关闭一个但不能打开第二个,或者如果我更改顺序我可以打开一个但不能关闭另一个。 (我想我已经尝试过101版本了)。如果有人能帮忙的话。
blue sky 默认情况下,当指针悬停时显示标题。 是否可以切换它,例如: $('#button').on('click', function(){ if (something) {turn
我正在编写一个简单的宏,它将打开、保存和关闭一个 Excel 文件(例如 myworkbook.xlsx),但我无法执行此操作。我的文件 myworkbook.xlsx 位于以下位置: C:\User
我正在加载两个 geoJson 层 - 出于测试目的,两个层都是相同的数据,但是是从两个不同的 json 文件中提取的。当我在图层 Controller 中打开和关闭图层时,图层的绘制顺序会发生变化。
我在我的设置 Activity 中发现,当用户单击 ToggleButton 时,它应该在整个应用程序中静音,但它不起作用。我在教程类中放入的 SoundPool onClick 按钮声音仍在 onC
我有一部双卡手机。如果我想打开飞行模式,两个 SIM 卡都会发生这种情况。 是否可以通过编程方式仅对一张SIM卡进行操作(用户可以选择两者之一)?我看到了here上的帖子,他们一直工作到 API 16
我目前正在开发一个带有一些 pipe() 和重定向的 C shell 程序。 我使用 dup2() stdout 和 stderr (1 & 2) 重定向。 当我用 int fd = open("te
Jquery: 有没有办法捕获浏览器打开“打开/另存为”对话框时触发的事件? Open/Save dialog example http://qpack.orcanos.com/helpcenter/
我知道你可以用 window.close 关闭 window.open 但还有其他方法吗?我有一个打开 facebook 连接的弹出窗口,我想在用户连接到 facebook 时关闭弹出窗口,然后刷新父
我搜索一个事件,如果不存在,则搜索一种方法来了解屏幕是否关闭(电源选项 - 控制面板 - 关闭显示设置)。 这些解决方案都不适合我。 所以要么我在某个地方错了,要么就是不合适。 How to get
我是一名优秀的程序员,十分优秀!