如何使用contenteditable = true在firefox上使这个div不可调整和可拖动

时间:2010-11-26 04:18:05

标签: javascript html5 contenteditable

这是我的代码:

<div contenteditable=true style="position:absolute;top:300px;width:200px;height:300px;background:red;color:black;">
        ddwwwwwwwwwwwwwwwwwwwww
</div>

我使用contenteditable=true使div可编辑,但它也可以在firefox上调整大小和可拖动,

所以如何让它不可调整和可拖动

感谢

1 个答案:

答案 0 :(得分:4)

将contenteditable div置于另一个具有所需定位的div中:

<div style="position:absolute;top:300px;width:200px;height:300px;background:red;color:black;">
    <div contenteditable=true>
        ddwwwwwwwwwwwwwwwwwwwww
    </div>
</div>