我有以下
代码:
<div contentEditable="true">
Blah blah <a href="http://google.com">Google</a> Blah blah
</div>
Fiddle
有没有办法让这个可点击,不可编辑,没有移动锚在该div之外?
只需将
链接包裹在另一个div中,就像这样:
<div contentEditable="true">
<div contentEditable="false">
Bla bla <a href="http://google.com">Google</a> Bla bla
</div>
</div>
原文链接:https://www.f2er.com/html/232984.html