Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有如下可编辑的文本字段。
如何处理文本中的链接。现在,当我单击链接时,它开始编辑它而不是打开链接。
没有一个工作示例很难说,但您可以尝试覆盖 jeditable 的点击行为,如下所示:
$("#yourEditable a").click(function(e) { e.stopPropagation(); window.open($(this).attr("href")); });