html 文本输入被阻止。仅可通过右键单击使用

发布于 2024-11-08 12:41:20 字数 315 浏览 0 评论 0原文

我正在开发一个测试页面...

http://www.voradabo.com/iMcuLast/index_clean .html

并且,在检查其功能时发现这些元素被“阻止”,并且只有用户“右键单击”它们才能访问......这是一个奇怪且意想不到的副作用,我需要尽快解决...我已经重新编写了很多次代码,但似乎没有任何效果...请帮助,我已经没有想法了!

预先感谢任何愿意帮助我解决这个“令人费解的谜团”的人

I'm developing a test page...

http://www.voradabo.com/iMcuLast/index_clean.html

and, while checking its functionality found that the elements are "blocked" and only accesible to users if they "right click" over them... this is a strange and unexpected side effect that I need to solve ASAP... I've remade the code a lot of times but nothing seems to work... please help, I've run out of ideas!

thanks in advance for anyone willing to help me solve this "puzzling mistery"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不即不离 2024-11-15 12:41:20

问题出在 js_dragDropCookies.js 中的第 43 行:

$(".recibeDrag").disableSelection();

如果您删除该行,它就会起作用。但是,您想要禁用该选择的原因是可以理解的,因此最好解决它。

在上面的行之后,您可以自己将事件绑定到包含的输入元素,并调用 stopPropagation() 以防止 disableSelection() 捕获它:

$(".recibeDrag input").bind("mousedown",function(e){ e.stopPropagation(); });

The problem is with line 43 in js_dragDropCookies.js:

$(".recibeDrag").disableSelection();

If you take that one line out, it works. However, it's understandable why you want to disable the selection, so it might be better to work around it.

Right after the above line you can bind an event yourself to the contained input elements and call stopPropagation() in order to prevent disableSelection() to capture it:

$(".recibeDrag input").bind("mousedown",function(e){ e.stopPropagation(); });
北凤男飞 2024-11-15 12:41:20

这确实很奇怪。添加某种功能怎么样:

$("#geoCultura div div input").click(function() {
  $(this).focus();
});

强制工字梁在单击时显示。

This is very strange indeed. How about adding some sort of:

$("#geoCultura div div input").click(function() {
  $(this).focus();
});

To force the I-beam to show up when it gets clicked on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文