私はどのように持つことができるかを理解しようとしています:
<span contentEditable="true"></span>
スペースなしで。
JavaScript でこれを行う方法についてのアイデアはありますか?
Im not sure if this is the right way to do this, but it works. You have to set some css properties like display:block, a width and a height value.
<span contentEditable="true" style="width:120px;height:20px;display:block;"></span>
Here you can see an example http://jsfiddle.net/NBfpC/