单击链接时停止选择页面元素

发布于 2024-12-11 14:32:37 字数 194 浏览 0 评论 0原文

我正在使用 jQuery Tools Scrollble 插件编写一个包含 javascript 可滚动元素的页面。您可以在此处查看我的页面:idiots.mrtriangle.me

当您单击图库选项卡时,访问图库并单击“滚动按钮”,第二次单击时,它会突出显示整个页面,这非常烦人。我不确定为什么要这样做,有什么方法可以删除这个选择吗?

谢谢

I'm writing a page containing a javascript scrollable element using the jQuery Tools Scrollble plug in. You can view my page here: idiots.mrtriangle.me

When you click on the Gallery tab, access a gallery and click the 'scroll buttons', on second click it highlights the entire page, which is quite annoying. I'm not sure why it's doing this, is there any way to remove this selection?

Thanks

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

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

发布评论

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

评论(1

月寒剑心 2024-12-18 14:32:37

在此处输入图像描述我认为您询问的是我图像中的问题。这就是这个问题的解决方案。

<a class="next browse right"></a>

您将上述元素用于该滚动条。只需像这样设置 href 属性即可。

<a class="next browse right" href="javascript:;"></a>

如果你想在jquery

中像这样动态发送设置

$('.next browser right').attr('href','javascript:;');

enter image description hereI think your asking about the problem which is in my image. And this is the solution for this problem.

<a class="next browse right"></a>

Your using the above element for that scroller. just set the href attribute like this.

<a class="next browse right" href="javascript:;"></a>

i this this will help U.

If you want to sent dynamically set like this in jquery

$('.next browse right').attr('href','javascript:;');

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