使用 JQuery 禁用文本输入的拖动滚动
单击文本输入时,我需要禁用拖动滚动功能。页面的格式是div的表格,里面有输入,当你点击并拖动任何地方时,你可以水平拖动页面。我想这样做,这样您只能在不单击其中一个输入时拖动,并在单击输入时禁用拖动,以便可以编辑输入。这是我的做法:
$('.dataContent').mousedown( function (event) {
if($(this).children().size()>0) {$(this)
.data('down', true)
.data('x', event.clientX)
.data('scrollLeft', this.scrollLeft);
return false;
}
I need to disable the drag scroll functionality when clicking on text inputs. The page is in the format of a table of a div with inputs inside, and you can drag the page horizontally when you click and drag anywhere. I want to make this so you can only drag when you don't click on one of the inputs, and disable the drag when an input is clicked so the input can be edited. Here is my go at it:
$('.dataContent').mousedown( function (event) {
if($(this).children().size()>0) {$(this)
.data('down', true)
.data('x', event.clientX)
.data('scrollLeft', this.scrollLeft);
return false;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 event.target 获取事件原始目标的元素:
You can use event.target to obtain the element that was the event's original target: