我有一个问题。当href放在父元素中时,如何从div的内部元素禁用href?也许我试着想象它:
<span class='img' href="someLink">
<div class="main">
<h2 contenteditable="true">Some txt</h2>
</div>
</span>
我想禁用href
中的<h2>
函数(因为我想通过点击它们来编辑它,现在您知道我正在重定向到href url),并将其保留在其他html元素中。我怎样才能做到这一点?有没有选择只使用html标签吗?或者唯一的选择是使用js / jQuery?你能给我一个例子或解决方案吗?
答案 0 :(得分:1)
你可以这样做:
<h2 contenteditable="true" onclick='return false;'>Some txt</h2>