如何阻止 jQuery 树项目中的 Ajax.ActionLink 将点击传播到树项目
通常,据我了解,您从 jQuery 单击处理程序返回 false,这会阻止单击进一步进行。我如何使用 Ajax.ActionLink 实现相同的行为? 树项使用单击来展开和折叠,单击 Ajax.ActionLink 会导致执行操作链接并导致树项折叠/展开。
Normally, as I understand, you return false from jQuery click handler, and that stops click from going further. How would I achive the same behavior with Ajax.ActionLink?
Tree items use click to expand and collaps, and clicking on Ajax.ActionLink causes both action link to be executed and tree item collapsed/expanded.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 event.preventDefault(); 和 event.stopPropagation();
Try using event.preventDefault(); and event.stopPropagation();