我想在我的点击位置附加具有绝对位置的元素。我不知道如何测量顶部和左侧 css 属性。
这是我的 JS,它附加了 div 编辑器。
$(document).on('dblclick', '.slide', function() {
$(this).find(".step-wrapper").prepend('<div class="editor" contenteditable="true"> <h2 class="text2">Title</h2></div>');
});
html结构:
<dic class="step">
<div class="step-wrapper">
</div>
</div>